From fluet at tti-c.org Wed Apr 1 13:58:32 2009 From: fluet at tti-c.org (Matthew Fluet) Date: Wed Apr 1 12:59:09 2009 Subject: [MLton] MLton: A few questions In-Reply-To: <109192576@web.de> References: <109192576@web.de> Message-ID: On Wed, 25 Mar 2009, emil artin wrote: > I have a few questions about MLton which I want to ask > and hope that experienced users on this list can answer my questions. > > 1) Is there any howto or guide about custom compilation of MLton? > I would like to compile a 64bit version of MLton on AIX and Solaris myself! There are a number of pages on the mlton.org wiki that explain how to build mlton and port to a new system: http://mlton.org/SelfCompiling http://mlton.org/PortingMLton http://mlton.org/CrossCompiling You should probably also read (and update, if you encounter something to the contrary) the platform specific notes: http://mlton.org/PlatformSpecificNotes > 2) Is it possible (or sensible) to use a non gcc compiler (e.g. xlc on AIX)? It might be. I think that some of the Intel folks have used the Intel compiler, but I'm not sure. In /runtime/Makefile, you could change CC from 'gcc -std=gnu99' to something else, but you will probably have to change a lot of the flags. This is for compiling the runtime library that is linked to an SML program. As Dan mentioned, you can use the '-cc' option to mlton itself set an alternate command for the C compiler; note, however, that this command is invoked as a C compiler, as an assembler, and as a linker -- i.e., it uses the command as a driver program, much as gcc supports being invoked as a driver. > 3) What are the prerequisites? I know about gmp and SML/NJ. > Is SML/NJ absolutely necessary? No, SML/NJ is not necessary, but you otherwise need to have a binary build of mlton to compile mlton. > 4) Does MLton generate an executable file from SML code by first compiling it into C > and then using a C compiler to compile it to an executable file? As noted by others, this is one of the supported compilation strategies, and the only one for platforms other than x86 and amd64. For those platforms, there is a native codegen that produces assembly. > PS: Evidently the activities on MLton has been decreased dramatically during the past few months. > It seems that the project leaders don't have much time for further developement of MLton. > What is going on? MLton is a volunteer project, so developers contribute when they have the resources to do so. No one currently has support to do significant development on MLton and many of us have other responsibilities that take precedence. -Matthew From ville at laurikari.net Wed Apr 1 21:37:22 2009 From: ville at laurikari.net (Ville Laurikari) Date: Wed Apr 1 21:37:28 2009 Subject: [MLton] MLton: A few questions In-Reply-To: References: <109192576@web.de> Message-ID: <20090402053722.GC22485@laurikari.net> On Wed, Apr 01, 2009 at 03:58:32PM -0600, Matthew Fluet wrote: >> 2) Is it possible (or sensible) to use a non gcc compiler (e.g. xlc on AIX)? > > It might be. I think that some of the Intel folks have used the Intel > compiler, but I'm not sure. Ah, yes, the Intel compiler is highly compatible with GCC, so it might just work as a drop-in replacement for GCC. The MLton runtime has some GCC specific code; the most obvious part is the 200 or so occurrences of __attribute__, but there may be something else as well. It could be a fair amount of work, so I'm interested: what do you think you stand to gain from compiling with xlc instead of GCC? An easier way is to leave the runtime alone and only use the -cc flag for MLton. If you go this route, make sure you link also with the GCC runtime library because a runtime built with GCC will depend on it, but xlc won't supply it automatically. So you'd probably have to put in a -link-flag "-l `gcc --print-file-name libgcc.a`" as well. Emil, I'm also keen to hear if you got MLton compiled OK on AIX? -- http://laurikari.net/ville/ From emil.artin at web.de Thu Apr 2 01:59:38 2009 From: emil.artin at web.de (emil artin) Date: Thu Apr 2 02:00:13 2009 Subject: [MLton] MLton: A few questions Message-ID: <120571811@web.de> Thank you very much for your anwsers. > MLton is a volunteer project, so developers contribute when they have the > resources to do so. No one currently has support to do significant > development on MLton and many of us have other responsibilities that take > precedence. Hopefully mlton project finds more volunteers and financial support that will keep it alive! I believe that the potential consumers of this project can also contribute to boost its popularity by using it in more real world projects. Coming from other background than CS I'm actually a beginner who tries to combine his intellectual curiosity (to some extent) with his daily job. Thank you again! Regards E.A. ____________________________________________________________________ Psssst! Schon vom neuen WEB.DE MultiMessenger geh?rt? Der kann`s mit allen: http://www.produkte.web.de/messenger/?did=3123 From emil.artin at web.de Thu Apr 2 03:01:18 2009 From: emil.artin at web.de (emil artin) Date: Thu Apr 2 03:01:53 2009 Subject: [MLton] MLton: A few questions Message-ID: <120692536@web.de> > what do you think you stand to gain from compiling with xlc instead of GCC? I'm not in a position to argue about it from technical point of view. That was for me just a matter of choice and feasibility. In the past I had serious problems with gcc on AIX getting segmentation fautlt on diverse occasions. On the other hand, I believe (that is just my feeling:-)) that the "native" compiler of a vendor offers you a better support. > Emil, I'm also keen to hear if you got MLton compiled OK on AIX? I guess that I have already posted the following answer to you or to the list(!): ####################################################################### After modifying bin/mlton-script and executing "gmake all-no-docs CPPFLAGS=-I/home/emil/local/include" I get now (or to put it more precisely as before) the following errors: ----------------------------------------------------------------------- .... Type checking ckit-lib library. Type checking cml library. Type checking mlrisc-lib library. Type checking mlnlffi-lib library. Type checking mlyacc-lib library. Type checking smlnj-lib library. gmake -C "mllex" gmake[2]: Entering directory `/tmp/mlton-svn-20090329/mllex' Compiling mllex "mlton" -target self mllex.mlb ld: 0711-224 WARNING: Duplicate symbol: .fesetround ld: 0711-224 WARNING: Duplicate symbol: .fegetround ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information. ld: 0711-317 ERROR: Undefined symbol: .gdtoa__strtof ld: 0711-317 ERROR: Undefined symbol: .gdtoa__gdtoa ld: 0711-317 ERROR: Undefined symbol: .gdtoa__strtord ld: 0711-317 ERROR: Undefined symbol: .gdtoa__strtorf collect2: ld returned 8 exit status call to system failed with exit status 1: gcc -o mllex /tmp/filefaIyWT.o /tmp/fileZmQ1qQ.o /tmp/filetqgDpx.o /tmp/file5BK6di.o /tmp/filesgBvKj.o /tmp/fileM1RWOo.o -L/tmp/mlton-svn-20090329/build/lib/self -lmlton -lgdtoa -L/home/emil/local/lib -lm -lgmp -maix64 gmake[2]: *** [mllex] Error 1 gmake[2]: Leaving directory `/tmp/mlton-svn-20090329/mllex' gmake[1]: *** [tools] Error 2 gmake[1]: Leaving directory `/tmp/mlton-svn-20090329' gmake: *** [all-no-docs] Error 2 ----------------------------------------------------------------------- Any idea? Did you proceed to compile mlton in the same way as I did it now? Thank you for your feedback! Regards E.A. ####################################################################### Thank you very much! Regards, E.A. ________________________________________________________________________ Neu bei WEB.DE: Kostenlose maxdome Movie-FLAT! https://register.maxdome.de/xml/order/LpWebDe?ac=OM.MD.MD008K15726T7073a From ville at laurikari.net Thu Apr 2 08:14:16 2009 From: ville at laurikari.net (Ville Laurikari) Date: Thu Apr 2 08:14:23 2009 Subject: [MLton] MLton: A few questions In-Reply-To: <120692536@web.de> References: <120692536@web.de> Message-ID: <20090402161416.GE22485@laurikari.net> On Thu, Apr 02, 2009 at 01:01:18PM +0200, emil artin wrote: > > what do you think you stand to gain from compiling with xlc instead of GCC? > I'm not in a position to argue about it from technical point of view. > That was for me just a matter of choice and feasibility. > In the past I had serious problems with gcc on AIX getting > segmentation fautlt on diverse occasions. On the other hand, > I believe (that is just my feeling:-)) that the "native" compiler > of a vendor offers you a better support. OK, I can understand that. We haven't had problems with GCC on AIX; we're using GCC 4.2.2 at the moment. So if you want to build something with MLton on AIX and want to get a stable solution in place quickly, I'd say go with GCC. On the other hand, if you just want to have some fun with it and hack it, go ahead :) > After modifying bin/mlton-script and executing "gmake all-no-docs CPPFLAGS=-I/home/emil/local/include" > I get now (or to put it more precisely as before) the following errors: > ----------------------------------------------------------------------- > .... > Type checking ckit-lib library. > Type checking cml library. > Type checking mlrisc-lib library. > Type checking mlnlffi-lib library. > Type checking mlyacc-lib library. > Type checking smlnj-lib library. > gmake -C "mllex" > gmake[2]: Entering directory `/tmp/mlton-svn-20090329/mllex' > Compiling mllex > "mlton" -target self mllex.mlb > ld: 0711-224 WARNING: Duplicate symbol: .fesetround > ld: 0711-224 WARNING: Duplicate symbol: .fegetround > ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information. > ld: 0711-317 ERROR: Undefined symbol: .gdtoa__strtof > ld: 0711-317 ERROR: Undefined symbol: .gdtoa__gdtoa > ld: 0711-317 ERROR: Undefined symbol: .gdtoa__strtord > ld: 0711-317 ERROR: Undefined symbol: .gdtoa__strtorf > collect2: ld returned 8 exit status > call to system failed with exit status 1: > gcc -o mllex /tmp/filefaIyWT.o /tmp/fileZmQ1qQ.o /tmp/filetqgDpx.o /tmp/file5BK6di.o /tmp/filesgBvKj.o /tmp/fileM1RWOo.o -L/tmp/mlton-svn-20090329/build/lib/self -lmlton -lgdtoa -L/home/emil/local/lib -lm -lgmp -maix64 > gmake[2]: *** [mllex] Error 1 > gmake[2]: Leaving directory `/tmp/mlton-svn-20090329/mllex' > gmake[1]: *** [tools] Error 2 > gmake[1]: Leaving directory `/tmp/mlton-svn-20090329' > gmake: *** [all-no-docs] Error 2 > ----------------------------------------------------------------------- > Any idea? > Did you proceed to compile mlton in the same way as I did it now? It builds fine for me. I'm not getting the warnings. Note that I'm still using AIX 5.2, which is by now very old. I've never tried to build on 5.3 or 6.1. What AIX version are you using? The errors about missing gdtoa symbols are strange. Can you send the entire build log? It's impossible to guess what could be going wrong with the information I have now, -- http://laurikari.net/ville/ From emil.artin at web.de Fri Apr 3 03:27:10 2009 From: emil.artin at web.de (emil artin) Date: Fri Apr 3 03:27:44 2009 Subject: [MLton] Re: MLton: A few questions Message-ID: <122492055@web.de> I have extracted your version of libgdtoa.a and the version in the compilation subdirectories and compared the symbols in object files and found out that the following files in your version contain the missing symbols(!): gdtoa.o strtof.o strtord.o strtorf.o I have changed the library "libgdtoa*" in subdirectories "build/lib/self" and "runtime" and rerun the compilation! Voila! ------------------------- Build of MLton succeeded. ------------------------- Nevertheless, the actual problem remained untouched! It is somehow strange why my libgdtoa* deviate from yours. Should I send you the complete output of my compilation run? I'm using gcc 4.2.4 on AIX 5.3! Regards, E.A. ________________________________________________________________________ Neu bei WEB.DE: Kostenlose maxdome Movie-FLAT! https://register.maxdome.de/xml/order/LpWebDe?ac=OM.MD.MD008K15726T7073a From ville at laurikari.net Sat Apr 4 11:22:20 2009 From: ville at laurikari.net (Ville Laurikari) Date: Sat Apr 4 12:35:05 2009 Subject: [MLton] Re: [MLton-user] Re: MLton: A few questions In-Reply-To: <122492055@web.de> References: <122492055@web.de> Message-ID: <20090404192220.GA19470@laurikari.net> On Fri, Apr 03, 2009 at 01:27:10PM +0200, emil artin wrote: > It is somehow strange why my libgdtoa* deviate from yours. > Should I send you the complete output of my compilation run? The complete log might help. -- http://laurikari.net/ville/ From fluet at tti-c.org Sun Apr 5 06:38:08 2009 From: fluet at tti-c.org (Matthew Fluet) Date: Sun Apr 5 05:36:31 2009 Subject: [MLton] Re: [MLton-commit] r7033 In-Reply-To: References: Message-ID: On Sat, 4 Apr 2009, Ville Laurikari wrote: > Changed hard coded (non-portable) values for RTLD_GLOBAL, RTLD_LAZY, > RTLD_LOCAL, and RTLD_NOW. Use the "make constants" mechanism instead. > > ---------------------------------------------------------------------- > > U mlton/trunk/lib/mlnlffi/memory/linkage-libdl.sml > U mlton/trunk/lib/mlnlffi/memory/memory.unix.mlb > U mlton/trunk/runtime/gen/basis-ffi.def > U mlton/trunk/runtime/platform.c > > ---------------------------------------------------------------------- I don't think this is a good idea. It forces the Basis Library archive to carry around values that are only used by mlnlffi-lib. This means that these constants need to be available on every platform, regardless of whether or not that platform supports libdl (some may not). From fluet at tti-c.org Sun Apr 5 06:42:21 2009 From: fluet at tti-c.org (Matthew Fluet) Date: Sun Apr 5 05:40:43 2009 Subject: [MLton] Re: [MLton-commit] r7034 In-Reply-To: References: Message-ID: On Sat, 4 Apr 2009, Ville Laurikari wrote: > Regenerated. But shouldn't generated files be removed from version > control? Why are these here? > > ---------------------------------------------------------------------- > > U mlton/trunk/basis-library/primitive/basis-ffi.sml > U mlton/trunk/runtime/basis-ffi.h > U mlton/trunk/runtime/gen/basis-ffi.h > U mlton/trunk/runtime/gen/basis-ffi.sml > > ---------------------------------------------------------------------- These are platform independent, but require mlton to build the program that generates them. So, it is a little easier for cross-compiling to include the generated files. They change very slowly. From ville at laurikari.net Sun Apr 5 06:29:02 2009 From: ville at laurikari.net (Ville Laurikari) Date: Sun Apr 5 06:29:07 2009 Subject: [MLton] Re: [MLton-commit] r7033 In-Reply-To: References: Message-ID: <20090405132902.GB19470@laurikari.net> On Sun, Apr 05, 2009 at 08:38:08AM -0500, Matthew Fluet wrote: > I don't think this is a good idea. It forces the Basis Library > archive to carry around values that are only used by mlnlffi-lib. > This means that these constants need to be available on every > platform, regardless of whether or not that platform supports libdl > (some may not). All of the platforms we currently support (AIX, Darwin, FreeBSD, HP-UX, Linux, Solaris, Windows, did I forget anything?) do have a libdl of some sort. But yes, I see your point, there is probably some interesting platform out there which doesn't have it. What would you suggest as an alternative? Perhaps a of small C program which generates an .sml file for the mlnlffi-lib would be better? If you think something that would be OK, I can change it to do that instead... -- http://laurikari.net/ville/ From fluet at tti-c.org Sun Apr 5 12:35:17 2009 From: fluet at tti-c.org (Matthew Fluet) Date: Sun Apr 5 11:33:29 2009 Subject: [MLton] copyright In-Reply-To: References: Message-ID: On Sat, 4 Apr 2009, Ville Laurikari wrote: > Modified: mlton/trunk/mlnlffigen/Makefile > =================================================================== > --- mlton/trunk/mlnlffigen/Makefile 2009-04-04 16:43:02 UTC (rev 7030) > +++ mlton/trunk/mlnlffigen/Makefile 2009-04-04 17:14:46 UTC (rev 7031) > @@ -1,4 +1,4 @@ > -## Copyright (C) 2005-2006 Henry Cejtin, Matthew Fluet, Suresh > +## Copyright (C) 2005-2009 Henry Cejtin, Matthew Fluet, Suresh > # Jagannathan, and Stephen Weeks. > # > # MLton is released under a BSD-style license. BTW, I'm not sure that it is appropriate to assert Copyright through years in which the source file did not change. It is certainly easier to maintain a simple contiguous range; however, it doesn't seem to be the case that projects do a massive Copyright++ on Jan. 1 of each year, which suggests that it should only be asserted for the years in which the source file is created or modified (in a non-trivial way?). From ville at laurikari.net Sun Apr 5 12:56:15 2009 From: ville at laurikari.net (Ville Laurikari) Date: Sun Apr 5 12:56:21 2009 Subject: [MLton] copyright In-Reply-To: References: Message-ID: <20090405195615.GC19470@laurikari.net> On Sun, Apr 05, 2009 at 02:35:17PM -0500, Matthew Fluet wrote: > On Sat, 4 Apr 2009, Ville Laurikari wrote: >> -## Copyright (C) 2005-2006 Henry Cejtin, Matthew Fluet, Suresh >> +## Copyright (C) 2005-2009 Henry Cejtin, Matthew Fluet, Suresh > > BTW, I'm not sure that it is appropriate to assert Copyright through > years in which the source file did not change. It is certainly easier to > maintain a simple contiguous range; however, it doesn't seem to be the > case that projects do a massive Copyright++ on Jan. 1 of each year, which > suggests that it should only be asserted for the years in which the > source file is created or modified (in a non-trivial way?). Nowadays, most of the world is with the Berne Convention: http://en.wikipedia.org/wiki/Berne_Convention_for_the_Protection_of_Literary_and_Artistic_Works The convention says (in article 5 part 2): http://www.law.cornell.edu/treaties/berne/5.html "The enjoyment and the exercise of these rights shall not be subject to any formality" This means that we don't actually need any kind of copyright assertion texts at all. One can put some in, but they have no legal meaning. They are only useful to remind the reader that there's a copyright; which is probably a good thing, so why not. Anyway, the copyright years are pretty much useless for legal purposes. Now, there are some developing countries which are outside the Berne Convention. But, I'd argue that you would be hard pressed to litigate copyright violations in these countries anyway, so it doesn't really matter. And no, I am not a lawyer and this is not legal advice. (I suppose that disclaimer is still needed at least in the US... not needed in Finland :-) -- http://laurikari.net/ville/ From fluet at tti-c.org Mon Apr 6 16:48:28 2009 From: fluet at tti-c.org (Matthew Fluet) Date: Mon Apr 6 15:46:00 2009 Subject: [MLton] Re: [MLton-commit] r7033 In-Reply-To: <20090405132902.GB19470@laurikari.net> References: <20090405132902.GB19470@laurikari.net> Message-ID: On Sun, 5 Apr 2009, Ville Laurikari wrote: > On Sun, Apr 05, 2009 at 08:38:08AM -0500, Matthew Fluet wrote: >> I don't think this is a good idea. It forces the Basis Library >> archive to carry around values that are only used by mlnlffi-lib. >> This means that these constants need to be available on every >> platform, regardless of whether or not that platform supports libdl >> (some may not). > > All of the platforms we currently support (AIX, Darwin, FreeBSD, > HP-UX, Linux, Solaris, Windows, did I forget anything?) do have a > libdl of some sort. But yes, I see your point, there is probably some > interesting platform out there which doesn't have it. > > What would you suggest as an alternative? Perhaps a of small C > program which generates an .sml file for the mlnlffi-lib would be > better? If you think something that would be OK, I can change it to > do that instead... I think that generating the constants and putting them in a .sml file for the mlnlffi-lib would be a better approach. Do you have a platform for which the previously hard-wired constants are incorrect? From ville at laurikari.net Mon Apr 6 21:11:03 2009 From: ville at laurikari.net (Ville Laurikari) Date: Mon Apr 6 21:11:11 2009 Subject: [MLton] Re: [MLton-commit] r7033 In-Reply-To: References: <20090405132902.GB19470@laurikari.net> Message-ID: <20090407041103.GC19528@laurikari.net> On Mon, Apr 06, 2009 at 06:48:28PM -0500, Matthew Fluet wrote: > I think that generating the constants and putting them in a .sml file for > the mlnlffi-lib would be a better approach. I'll do that, then. Thanks. > Do you have a platform for which the previously hard-wired constants are > incorrect? Yes; in fact, I have two platforms: AIX and HP-UX. -- http://laurikari.net/ville/ From emil.artin at web.de Wed Apr 8 01:42:00 2009 From: emil.artin at web.de (emil artin) Date: Wed Apr 8 04:36:54 2009 Subject: [MLton] Re: [MLton-user] Re: MLton: A few questions Message-ID: <128807779@web.de> > -----Urspr?ngliche Nachricht----- > Von: "Ville Laurikari" > Gesendet: 04.04.09 21:22:26 > An: emil artin > CC: mlton-user@mlton.org, mlton@mlton.org > Betreff: Re: [MLton-user] Re: MLton: A few questions > On Fri, Apr 03, 2009 at 01:27:10PM +0200, emil artin wrote: > > It is somehow strange why my libgdtoa* deviate from yours. > > Should I send you the complete output of my compilation run? > > The complete log might help. > > -- > http://laurikari.net/ville/ > You find in the attachment the complete output of a new compilation run. For the sake of completeness I mention again that I am using -------------------------------------------------------------- # gcc -v Using built-in specs. Target: powerpc-ibm-aix5.3.0.0 Configured with: ../gcc-4.2.4/configure --with-as=/usr/bin/as --with-ld=/usr/bin/ld --enable-languages=c,c++,fortran --prefix=/opt/freeware --enable-threads --enable-version-specific-runtime-libs --disable-nls --enable-decimal-float=dpd --host=powerpc-ibm-aix5.3.0.0 Thread model: aix gcc version 4.2.4 -------------------------------------------------------------- GMP version 4.2.4 -------------------------------------------------------------- GNU Make 3.80 Regards E.A. ______________________________________________________ GRATIS f?r alle WEB.DE-Nutzer: Die maxdome Movie-FLAT! Jetzt freischalten unter http://movieflat.web.de -------------- next part -------------- gmake dirs runtime compiler world-no-check script mlbpathmap targetmap constants libraries tools gmake[1]: Entering directory `/tmp/mlton-svn-20090329' mkdir -p "/tmp/mlton-svn-20090329/build/bin" "/tmp/mlton-svn-20090329/build/lib/self/include" "/tmp/mlton-svn-20090329/build/lib/include" Compiling MLton runtime system for self. gmake -C runtime gmake[2]: Entering directory `/tmp/mlton-svn-20090329/runtime' cd gdtoa && \ gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization \ -w -O1 -c -DINFNAN_CHECK \ *.c rm -f gdtoa/arithchk.o ar -X 64 rc libgdtoa.a gdtoa/*.o ranlib libgdtoa.a cd gdtoa && \ gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long \ -w -O1 -c -DINFNAN_CHECK \ *.c rm -f gdtoa/arithchk.o ar -X 64 rc libgdtoa-gdb.a gdtoa/*.o ranlib libgdtoa-gdb.a cd gdtoa && \ gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long \ -w -O1 -c -DINFNAN_CHECK \ *.c rm -f gdtoa/arithchk.o ar -X 64 rc libgdtoa-pic.a gdtoa/*.o ranlib libgdtoa-pic.a gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o util.o util.c util/to-string.c: In function 'boolToString': util/to-string.c:12: warning: visibility attribute not supported in this configuration; ignored util/to-string.c: In function 'uintmaxToCommaString': util/to-string.c:104: warning: visibility attribute not supported in this configuration; ignored util/to-string.c: In function 'intmaxToCommaString': util/to-string.c:76: warning: visibility attribute not supported in this configuration; ignored util/die.c: In function 'diee': util/die.c:31: warning: visibility attribute not supported in this configuration; ignored util/die.c: In function 'die': util/die.c:19: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -o gen/gen-types gen/gen-types.c util.o gen/gen-types.c: In function 'main': gen/gen-types.c:441: warning: visibility attribute not supported in this configuration; ignored rm -f gen/c-types.h gen/c-types.sml gen/ml-types.h cd gen && ./gen-types rm -f gen/gen-types rm -f c-types.h ml-types.h cp gen/c-types.h c-types.h cp gen/ml-types.h ml-types.h gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o gc.o gc.c gc/array.c: In function 'GC_getArrayLength': gc/array.c:29: warning: visibility attribute not supported in this configuration; ignored gc/call-stack.c: In function 'GC_frameIndexSourceSeq': gc/call-stack.c:46: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getAmOriginal': gc/gc_state.c:109: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setAmOriginal': gc/gc_state.c:112: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setControlsMessages': gc/gc_state.c:116: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setControlsSummary': gc/gc_state.c:120: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setControlsRusageMeasureGC': gc/gc_state.c:124: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getCumulativeStatisticsBytesAllocated': gc/gc_state.c:128: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getCumulativeStatisticsNumCopyingGCs': gc/gc_state.c:132: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getCumulativeStatisticsNumMarkCompactGCs': gc/gc_state.c:136: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getCumulativeStatisticsNumMinorGCs': gc/gc_state.c:140: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getCumulativeStatisticsMaxBytesLive': gc/gc_state.c:144: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setHashConsDuringGC': gc/gc_state.c:148: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getLastMajorStatisticsBytesLive': gc/gc_state.c:152: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getRusageGCAddr': gc/gc_state.c:194: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getSignalsHandledAddr': gc/gc_state.c:198: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getSignalsPendingAddr': gc/gc_state.c:202: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setGCSignalHandled': gc/gc_state.c:206: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getGCSignalPending': gc/gc_state.c:210: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setGCSignalPending': gc/gc_state.c:214: warning: visibility attribute not supported in this configuration; ignored gc/handler.c: In function 'GC_startSignalHandler': gc/handler.c:36: warning: visibility attribute not supported in this configuration; ignored gc/handler.c: In function 'GC_finishSignalHandler': gc/handler.c:43: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'initIntInf': gc/int-inf.c:423: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_getProfileCurrent': gc/profiling.c:506: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_setProfileCurrent': gc/profiling.c:509: warning: visibility attribute not supported in this configuration; ignored gc/sources.c: In function 'GC_sourceName': gc/sources.c:24: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileEnter': gc/profiling.c:108: warning: visibility attribute not supported in this configuration; ignored gc/world.c: In function 'GC_getSaveWorldStatus': gc/world.c:115: warning: visibility attribute not supported in this configuration; ignored gc/call-stack.c: In function 'GC_numStackFrames': gc/call-stack.c:21: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'profileFree': gc/profiling.c:247: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileFree': gc/profiling.c:251: warning: visibility attribute not supported in this configuration; ignored gc/virtual-memory.c: In function 'GC_mmapAnon_safe': gc/virtual-memory.c:19: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileDone': gc/profiling.c:501: warning: visibility attribute not supported in this configuration; ignored gc/handler.c: In function 'GC_handler': gc/handler.c:69: warning: visibility attribute not supported in this configuration; ignored gc/weak.c: In function 'GC_weakGet': gc/weak.c:54: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getSavedThread': gc/gc_state.c:177: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getCurrentThread': gc/gc_state.c:168: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getCallFromCHandlerThread': gc/gc_state.c:158: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setSignalHandlerThread': gc/gc_state.c:190: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setSavedThread': gc/gc_state.c:185: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setCallFromCHandlerThread': gc/gc_state.c:163: warning: visibility attribute not supported in this configuration; ignored gc/weak.c: In function 'GC_weakCanGet': gc/weak.c:42: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileLeave': gc/profiling.c:168: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileInc': gc/profiling.c:208: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileAllocInc': gc/profiling.c:216: warning: visibility attribute not supported in this configuration; ignored gc/weak.c: In function 'GC_weakNew': gc/weak.c:69: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'profileMalloc': gc/profiling.c:234: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileMalloc': gc/profiling.c:238: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_compare': gc/int-inf.c:327: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_equal': gc/int-inf.c:339: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_toString': gc/int-inf.c:375: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_lshift': gc/int-inf.c:307: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_arshift': gc/int-inf.c:300: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_notb': gc/int-inf.c:279: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_neg': gc/int-inf.c:272: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_andb': gc/int-inf.c:204: warning: visibility attribute not supported in this configuration; ignored gc/call-stack.c: In function 'GC_callStack': gc/call-stack.c:36: warning: visibility attribute not supported in this configuration; ignored gc/size.c: In function 'GC_size': gc/size.c:22: warning: visibility attribute not supported in this configuration; ignored gc/share.c: In function 'GC_share': gc/share.c:29: warning: visibility attribute not supported in this configuration; ignored gc/done.c: In function 'GC_done': gc/done.c:96: warning: visibility attribute not supported in this configuration; ignored gc/pack.c: In function 'GC_unpack': gc/pack.c:64: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'profileWrite': gc/profiling.c:315: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileWrite': gc/profiling.c:319: warning: visibility attribute not supported in this configuration; ignored gc/world.c: In function 'GC_saveWorld': gc/world.c:111: warning: visibility attribute not supported in this configuration; ignored gc/switch-thread.c: In function 'GC_switchToThread': gc/switch-thread.c:68: warning: visibility attribute not supported in this configuration; ignored gc/pack.c: In function 'GC_pack': gc/pack.c:37: warning: visibility attribute not supported in this configuration; ignored gc/init.c: In function 'GC_init': gc/init.c:395: warning: visibility attribute not supported in this configuration; ignored gc/copy-thread.c: In function 'GC_copyCurrentThread': gc/copy-thread.c:54: warning: visibility attribute not supported in this configuration; ignored gc/copy-thread.c: In function 'GC_copyThread': gc/copy-thread.c:75: warning: visibility attribute not supported in this configuration; ignored gc/garbage-collection.c: In function 'GC_collect': gc/garbage-collection.c:234: warning: visibility attribute not supported in this configuration; ignored gc/array-allocate.c: In function 'GC_arrayAllocate': gc/array-allocate.c:119: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_add': gc/int-inf.c:197: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_xorb': gc/int-inf.c:253: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_sub': gc/int-inf.c:246: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_rem': gc/int-inf.c:239: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_orb': gc/int-inf.c:232: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_quot': gc/int-inf.c:225: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_mul': gc/int-inf.c:218: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_gcd': gc/int-inf.c:211: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o platform.o platform.c platform.c: In function 'GC_setCygwinUseMmap': platform.c:14: warning: visibility attribute not supported in this configuration; ignored platform.c: In function 'MLton_allocTooLarge': platform.c:37: warning: visibility attribute not supported in this configuration; ignored platform.c: In function 'MLton_halt': platform.c:31: warning: visibility attribute not supported in this configuration; ignored platform.c: In function 'MLton_init': platform.c:26: warning: visibility attribute not supported in this configuration; ignored platform.c: At top level: platform.c:37: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o platform/aix.o platform/aix.c platform/aix.c: In function 'GC_displayMem': platform/aix.c:173: warning: pointer of type 'void *' used in arithmetic platform/aix.c:181: warning: format '%08llx' expects type 'long long unsigned int', but argument 2 has type 'prptr64_t' platform/aix.c:181: warning: format '%08llx' expects type 'long long unsigned int', but argument 3 has type 'prptr64_t' platform/nonwin.c: In function 'MLton_Process_cwait': platform/nonwin.c:23: warning: visibility attribute not supported in this configuration; ignored platform/nonwin.c: In function 'Posix_IO_settext': platform/nonwin.c:13: warning: visibility attribute not supported in this configuration; ignored platform/nonwin.c: In function 'Posix_IO_setbin': platform/nonwin.c:8: warning: visibility attribute not supported in this configuration; ignored platform/aix.c: In function 'GC_displayMem': platform/aix.c:183: warning: visibility attribute not supported in this configuration; ignored platform/aix.c: In function 'GC_physMem': platform/aix.c:75: warning: visibility attribute not supported in this configuration; ignored platform/aix.c: In function 'GC_pageSize': platform/aix.c:62: warning: visibility attribute not supported in this configuration; ignored platform/aix.c: In function 'fpclassify64': platform/aix.c:52: warning: visibility attribute not supported in this configuration; ignored platform/aix.c: In function 'fesetround': platform/aix.c:27: warning: visibility attribute not supported in this configuration; ignored platform/aix.c: In function 'fegetround': platform/aix.c:22: warning: visibility attribute not supported in this configuration; ignored platform/use-mmap.c: In function 'GC_mmapAnon': platform/use-mmap.c:9: warning: visibility attribute not supported in this configuration; ignored platform/use-mmap.c: In function 'GC_release': platform/use-mmap.c:5: warning: visibility attribute not supported in this configuration; ignored platform/recv.nonblock.c: In function 'MLton_recvfrom': platform/recv.nonblock.c:38: warning: visibility attribute not supported in this configuration; ignored platform/recv.nonblock.c: In function 'MLton_recv': platform/recv.nonblock.c:28: warning: visibility attribute not supported in this configuration; ignored platform/mmap-protect.c: In function 'GC_mmapAnon_safe_protect': platform/mmap-protect.c:16: warning: visibility attribute not supported in this configuration; ignored platform/mkdir2.c: In function 'mkdir2': platform/mkdir2.c:3: warning: visibility attribute not supported in this configuration; ignored platform/diskBack.unix.c: In function 'GC_diskBack_close': platform/diskBack.unix.c:48: warning: visibility attribute not supported in this configuration; ignored platform/diskBack.unix.c: In function 'GC_diskBack_read': platform/diskBack.unix.c:40: warning: visibility attribute not supported in this configuration; ignored platform/diskBack.unix.c: In function 'GC_diskBack_write': platform/diskBack.unix.c:59: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I../include -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -Wno-float-equal -c -o bytecode/interpret.o bytecode/interpret.c bytecode/interpret.c: In function 'MLton_Bytecode_interpret': bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c: At top level: bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/MLton/Itimer/itimer-consts.o basis/MLton/Itimer/itimer-consts.c basis/MLton/Itimer/itimer-consts.c:5: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Itimer/itimer-consts.c:5: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Itimer/itimer-consts.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/MLton/Itimer/set.o basis/MLton/Itimer/set.c basis/MLton/Itimer/set.c: In function 'MLton_Itimer_set': basis/MLton/Itimer/set.c:16: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/MLton/Process/spawne.o basis/MLton/Process/spawne.c basis/MLton/Process/spawne.c: In function 'MLton_Process_spawne': basis/MLton/Process/spawne.c:42: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/MLton/Process/spawnp.o basis/MLton/Process/spawnp.c basis/MLton/Process/spawnp.c: In function 'MLton_Process_spawnp': basis/MLton/Process/spawnp.c:31: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/MLton/Rlimit/rlimit-consts.o basis/MLton/Rlimit/rlimit-consts.c basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/MLton/Rlimit/rlimit.o basis/MLton/Rlimit/rlimit.c basis/MLton/Rlimit/rlimit.c: In function 'MLton_Rlimit_getHard': basis/MLton/Rlimit/rlimit.c:11: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit.c: In function 'MLton_Rlimit_getSoft': basis/MLton/Rlimit/rlimit.c:15: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit.c: In function 'MLton_Rlimit_set': basis/MLton/Rlimit/rlimit.c:21: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit.c: In function 'MLton_Rlimit_get': basis/MLton/Rlimit/rlimit.c:7: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/MLton/Rusage/rusage.o basis/MLton/Rusage/rusage.c basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_self_utime_sec': basis/MLton/Rusage/rusage.c:11: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_self_utime_usec': basis/MLton/Rusage/rusage.c:15: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_self_stime_sec': basis/MLton/Rusage/rusage.c:19: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_self_stime_usec': basis/MLton/Rusage/rusage.c:23: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_children_utime_sec': basis/MLton/Rusage/rusage.c:27: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_children_utime_usec': basis/MLton/Rusage/rusage.c:31: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_children_stime_sec': basis/MLton/Rusage/rusage.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_children_stime_usec': basis/MLton/Rusage/rusage.c:39: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_gc_utime_sec': basis/MLton/Rusage/rusage.c:43: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_gc_utime_usec': basis/MLton/Rusage/rusage.c:47: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_gc_stime_sec': basis/MLton/Rusage/rusage.c:51: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_gc_stime_usec': basis/MLton/Rusage/rusage.c:55: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_getrusage': basis/MLton/Rusage/rusage.c:61: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/MLton/Syslog/Syslog-consts.o basis/MLton/Syslog/Syslog-consts.c basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/MLton/Syslog/Syslog.o basis/MLton/Syslog/Syslog.c basis/MLton/Syslog/Syslog.c: In function 'MLton_Syslog_syslog': basis/MLton/Syslog/Syslog.c:17: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog.c: In function 'MLton_Syslog_openlog': basis/MLton/Syslog/Syslog.c:13: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog.c: In function 'MLton_Syslog_closelog': basis/MLton/Syslog/Syslog.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/MLton/bug.o basis/MLton/bug.c basis/MLton/bug.c: In function 'MLton_bug': basis/MLton/bug.c:12: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Net/Net.o basis/Net/Net.c basis/Net/Net.c: In function 'Net_htonl': basis/Net/Net.c:12: warning: visibility attribute not supported in this configuration; ignored basis/Net/Net.c: In function 'Net_ntohl': basis/Net/Net.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Net/Net.c: In function 'Net_htons': basis/Net/Net.c:26: warning: visibility attribute not supported in this configuration; ignored basis/Net/Net.c: In function 'Net_ntohs': basis/Net/Net.c:33: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Net/NetHostDB-consts.o basis/Net/NetHostDB-consts.c basis/Net/NetHostDB-consts.c:4: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB-consts.c:4: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Net/NetHostDB.o basis/Net/NetHostDB.c basis/Net/NetHostDB.c: In function 'NetHostDB_getEntryName': basis/Net/NetHostDB.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getEntryAliasesNum': basis/Net/NetHostDB.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getEntryAliasesN': basis/Net/NetHostDB.c:17: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getEntryAddrType': basis/Net/NetHostDB.c:21: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getEntryLength': basis/Net/NetHostDB.c:25: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getEntryAddrsNum': basis/Net/NetHostDB.c:31: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getEntryAddrsN': basis/Net/NetHostDB.c:39: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getByName': basis/Net/NetHostDB.c:51: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getByAddress': basis/Net/NetHostDB.c:45: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getHostName': basis/Net/NetHostDB.c:56: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Net/NetProtDB.o basis/Net/NetProtDB.c basis/Net/NetProtDB.c: In function 'NetProtDB_getEntryName': basis/Net/NetProtDB.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetProtDB.c: In function 'NetProtDB_getEntryAliasesNum': basis/Net/NetProtDB.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetProtDB.c: In function 'NetProtDB_getEntryAliasesN': basis/Net/NetProtDB.c:17: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetProtDB.c: In function 'NetProtDB_getEntryProto': basis/Net/NetProtDB.c:21: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetProtDB.c: In function 'NetProtDB_getByNumber': basis/Net/NetProtDB.c:31: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetProtDB.c: In function 'NetProtDB_getByName': basis/Net/NetProtDB.c:26: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Net/NetServDB.o basis/Net/NetServDB.c basis/Net/NetServDB.c: In function 'NetServDB_getEntryName': basis/Net/NetServDB.c:10: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getEntryAliasesNum': basis/Net/NetServDB.c:16: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getEntryAliasesN': basis/Net/NetServDB.c:20: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getEntryPort': basis/Net/NetServDB.c:24: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getEntryProto': basis/Net/NetServDB.c:28: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getByPort': basis/Net/NetServDB.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getByPortNull': basis/Net/NetServDB.c:46: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getByName': basis/Net/NetServDB.c:33: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getByNameNull': basis/Net/NetServDB.c:37: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Net/Socket/GenericSock.o basis/Net/Socket/GenericSock.c basis/Net/Socket/GenericSock.c: In function 'Socket_GenericSock_socketPair': basis/Net/Socket/GenericSock.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/GenericSock.c: In function 'Socket_GenericSock_socket': basis/Net/Socket/GenericSock.c:7: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Net/Socket/INetSock-consts.o basis/Net/Socket/INetSock-consts.c basis/Net/Socket/INetSock-consts.c:4: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/INetSock-consts.c:4: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Net/Socket/INetSock.o basis/Net/Socket/INetSock.c basis/Net/Socket/INetSock.c: In function 'Socket_INetSock_toAddr': basis/Net/Socket/INetSock.c:12: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/INetSock.c: In function 'Socket_INetSock_fromAddr': basis/Net/Socket/INetSock.c:23: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/INetSock.c: In function 'Socket_INetSock_getPort': basis/Net/Socket/INetSock.c:27: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/INetSock.c: In function 'Socket_INetSock_getInAddr': basis/Net/Socket/INetSock.c:31: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Net/Socket/Socket-consts.o basis/Net/Socket/Socket-consts.c basis/Net/Socket/Socket-consts.c:40: warning: overflow in implicit constant conversion basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Net/Socket/Socket.o basis/Net/Socket/Socket.c basis/Net/Socket/Socket.c: In function 'Socket_familyOfAddr': basis/Net/Socket/Socket.c:28: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_sendArrTo': basis/Net/Socket/Socket.c:83: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_sendArr': basis/Net/Socket/Socket.c:62: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_close': basis/Net/Socket/Socket.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_bind': basis/Net/Socket/Socket.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_accept': basis/Net/Socket/Socket.c:6: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_Ctl_getSockName': basis/Net/Socket/Socket.c:130: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_Ctl_getPeerName': basis/Net/Socket/Socket.c:125: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_Ctl_setIOCtl': basis/Net/Socket/Socket.c:120: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_Ctl_getIOCtl': basis/Net/Socket/Socket.c:114: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_Ctl_setSockOpt': basis/Net/Socket/Socket.c:108: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_Ctl_getSockOpt': basis/Net/Socket/Socket.c:101: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_shutdown': basis/Net/Socket/Socket.c:94: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_recvFrom': basis/Net/Socket/Socket.c:49: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_recv': basis/Net/Socket/Socket.c:40: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_listen': basis/Net/Socket/Socket.c:33: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_connect': basis/Net/Socket/Socket.c:24: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_sendVecTo': basis/Net/Socket/Socket.c:89: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_sendVec': basis/Net/Socket/Socket.c:67: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Net/Socket/UnixSock.o basis/Net/Socket/UnixSock.c basis/Net/Socket/UnixSock.c: In function 'Socket_UnixSock_toAddr': basis/Net/Socket/UnixSock.c:22: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/UnixSock.c: In function 'Socket_UnixSock_pathLen': basis/Net/Socket/UnixSock.c:35: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/UnixSock.c: In function 'Socket_UnixSock_fromAddr': basis/Net/Socket/UnixSock.c:45: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Net/Socket/select.o basis/Net/Socket/select.c basis/Net/Socket/select.c: In function 'Socket_setTimeout': basis/Net/Socket/select.c:10: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/select.c: In function 'Socket_getTimeout_sec': basis/Net/Socket/select.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/select.c: In function 'Socket_getTimeout_usec': basis/Net/Socket/select.c:16: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/select.c: In function 'Socket_setTimeoutNull': basis/Net/Socket/select.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/select.c: In function 'Socket_select': basis/Net/Socket/select.c:93: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/Error-consts.o basis/Posix/Error-consts.c basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/Error.o basis/Posix/Error.c basis/Posix/Error.c: In function 'Posix_Error_clearErrno': basis/Posix/Error.c:5: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error.c: In function 'Posix_Error_getErrno': basis/Posix/Error.c:9: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error.c: In function 'Posix_Error_strError': basis/Posix/Error.c:14: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/Dirstream.o basis/Posix/FileSys/Dirstream.c basis/Posix/FileSys/Dirstream.c: In function 'Posix_FileSys_Dirstream_rewindDir': basis/Posix/FileSys/Dirstream.c:23: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Dirstream.c: In function 'Posix_FileSys_Dirstream_readDir': basis/Posix/FileSys/Dirstream.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Dirstream.c: In function 'Posix_FileSys_Dirstream_openDir': basis/Posix/FileSys/Dirstream.c:10: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Dirstream.c: In function 'Posix_FileSys_Dirstream_closeDir': basis/Posix/FileSys/Dirstream.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/FileSys-consts.o basis/Posix/FileSys/FileSys-consts.c basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/ST.o basis/Posix/FileSys/ST.c basis/Posix/FileSys/ST.c: In function 'Posix_FileSys_ST_isBlk': basis/Posix/FileSys/ST.c:5: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/ST.c: In function 'Posix_FileSys_ST_isChr': basis/Posix/FileSys/ST.c:9: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/ST.c: In function 'Posix_FileSys_ST_isDir': basis/Posix/FileSys/ST.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/ST.c: In function 'Posix_FileSys_ST_isFIFO': basis/Posix/FileSys/ST.c:17: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/ST.c: In function 'Posix_FileSys_ST_isLink': basis/Posix/FileSys/ST.c:21: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/ST.c: In function 'Posix_FileSys_ST_isReg': basis/Posix/FileSys/ST.c:25: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/ST.c: In function 'Posix_FileSys_ST_isSock': basis/Posix/FileSys/ST.c:29: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/Stat.o basis/Posix/FileSys/Stat.c basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getDev': basis/Posix/FileSys/Stat.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getINo': basis/Posix/FileSys/Stat.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getMode': basis/Posix/FileSys/Stat.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getNLink': basis/Posix/FileSys/Stat.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getUId': basis/Posix/FileSys/Stat.c:23: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getGId': basis/Posix/FileSys/Stat.c:27: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getRDev': basis/Posix/FileSys/Stat.c:31: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getSize': basis/Posix/FileSys/Stat.c:35: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getATime': basis/Posix/FileSys/Stat.c:39: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getMTime': basis/Posix/FileSys/Stat.c:43: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getCTime': basis/Posix/FileSys/Stat.c:47: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_stat': basis/Posix/FileSys/Stat.c:69: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_lstat': basis/Posix/FileSys/Stat.c:65: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_fstat': basis/Posix/FileSys/Stat.c:61: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/Utimbuf.o basis/Posix/FileSys/Utimbuf.c basis/Posix/FileSys/Utimbuf.c: In function 'Posix_FileSys_Utimbuf_setAcTime': basis/Posix/FileSys/Utimbuf.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Utimbuf.c: In function 'Posix_FileSys_Utimbuf_setModTime': basis/Posix/FileSys/Utimbuf.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Utimbuf.c: In function 'Posix_FileSys_Utimbuf_utime': basis/Posix/FileSys/Utimbuf.c:15: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/access.o basis/Posix/FileSys/access.c basis/Posix/FileSys/access.c: In function 'Posix_FileSys_access': basis/Posix/FileSys/access.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/chdir.o basis/Posix/FileSys/chdir.c basis/Posix/FileSys/chdir.c: In function 'Posix_FileSys_chdir': basis/Posix/FileSys/chdir.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/chmod.o basis/Posix/FileSys/chmod.c basis/Posix/FileSys/chmod.c: In function 'Posix_FileSys_chmod': basis/Posix/FileSys/chmod.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/chown.o basis/Posix/FileSys/chown.c basis/Posix/FileSys/chown.c: In function 'Posix_FileSys_chown': basis/Posix/FileSys/chown.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/fchdir.o basis/Posix/FileSys/fchdir.c basis/Posix/FileSys/fchdir.c: In function 'Posix_FileSys_fchdir': basis/Posix/FileSys/fchdir.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/fchmod.o basis/Posix/FileSys/fchmod.c basis/Posix/FileSys/fchmod.c: In function 'Posix_FileSys_fchmod': basis/Posix/FileSys/fchmod.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/fchown.o basis/Posix/FileSys/fchown.c basis/Posix/FileSys/fchown.c: In function 'Posix_FileSys_fchown': basis/Posix/FileSys/fchown.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/fpathconf.o basis/Posix/FileSys/fpathconf.c basis/Posix/FileSys/fpathconf.c: In function 'Posix_FileSys_fpathconf': basis/Posix/FileSys/fpathconf.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/ftruncate.o basis/Posix/FileSys/ftruncate.c basis/Posix/FileSys/ftruncate.c: In function 'Posix_FileSys_ftruncate': basis/Posix/FileSys/ftruncate.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/getcwd.o basis/Posix/FileSys/getcwd.c basis/Posix/FileSys/getcwd.c: In function 'Posix_FileSys_getcwd': basis/Posix/FileSys/getcwd.c:6: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/link.o basis/Posix/FileSys/link.c basis/Posix/FileSys/link.c: In function 'Posix_FileSys_link': basis/Posix/FileSys/link.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/mkdir.o basis/Posix/FileSys/mkdir.c basis/Posix/FileSys/mkdir.c: In function 'Posix_FileSys_mkdir': basis/Posix/FileSys/mkdir.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/mkfifo.o basis/Posix/FileSys/mkfifo.c basis/Posix/FileSys/mkfifo.c: In function 'Posix_FileSys_mkfifo': basis/Posix/FileSys/mkfifo.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/open2.o basis/Posix/FileSys/open2.c basis/Posix/FileSys/open2.c: In function 'Posix_FileSys_open2': basis/Posix/FileSys/open2.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/open3.o basis/Posix/FileSys/open3.c basis/Posix/FileSys/open3.c: In function 'Posix_FileSys_open3': basis/Posix/FileSys/open3.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/pathconf.o basis/Posix/FileSys/pathconf.c basis/Posix/FileSys/pathconf.c: In function 'Posix_FileSys_pathconf': basis/Posix/FileSys/pathconf.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/readlink.o basis/Posix/FileSys/readlink.c basis/Posix/FileSys/readlink.c: In function 'Posix_FileSys_readlink': basis/Posix/FileSys/readlink.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/rename.o basis/Posix/FileSys/rename.c basis/Posix/FileSys/rename.c: In function 'Posix_FileSys_rename': basis/Posix/FileSys/rename.c:17: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/rmdir.o basis/Posix/FileSys/rmdir.c basis/Posix/FileSys/rmdir.c: In function 'Posix_FileSys_rmdir': basis/Posix/FileSys/rmdir.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/symlink.o basis/Posix/FileSys/symlink.c basis/Posix/FileSys/symlink.c: In function 'Posix_FileSys_symlink': basis/Posix/FileSys/symlink.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/truncate.o basis/Posix/FileSys/truncate.c basis/Posix/FileSys/truncate.c: In function 'Posix_FileSys_truncate': basis/Posix/FileSys/truncate.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/umask.o basis/Posix/FileSys/umask.c basis/Posix/FileSys/umask.c: In function 'Posix_FileSys_umask': basis/Posix/FileSys/umask.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/FileSys/unlink.o basis/Posix/FileSys/unlink.c basis/Posix/FileSys/unlink.c: In function 'Posix_FileSys_unlink': basis/Posix/FileSys/unlink.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/IO/FLock-consts.o basis/Posix/IO/FLock-consts.c basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/IO/FLock.o basis/Posix/IO/FLock.c basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_getType': basis/Posix/IO/FLock.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_getWhence': basis/Posix/IO/FLock.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_getStart': basis/Posix/IO/FLock.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_getLen': basis/Posix/IO/FLock.c:23: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_getPId': basis/Posix/IO/FLock.c:27: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_setType': basis/Posix/IO/FLock.c:31: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_setWhence': basis/Posix/IO/FLock.c:35: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_setStart': basis/Posix/IO/FLock.c:39: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_setLen': basis/Posix/IO/FLock.c:43: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_setPId': basis/Posix/IO/FLock.c:47: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_fcntl': basis/Posix/IO/FLock.c:7: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/IO/close.o basis/Posix/IO/close.c basis/Posix/IO/close.c: In function 'Posix_IO_close': basis/Posix/IO/close.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/IO/dup.o basis/Posix/IO/dup.c basis/Posix/IO/dup.c: In function 'Posix_IO_dup': basis/Posix/IO/dup.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/IO/dup2.o basis/Posix/IO/dup2.c basis/Posix/IO/dup2.c: In function 'Posix_IO_dup2': basis/Posix/IO/dup2.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/IO/fcntl-consts.o basis/Posix/IO/fcntl-consts.c basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/IO/fcntl2.o basis/Posix/IO/fcntl2.c basis/Posix/IO/fcntl2.c: In function 'Posix_IO_fcntl2': basis/Posix/IO/fcntl2.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/IO/fcntl3.o basis/Posix/IO/fcntl3.c basis/Posix/IO/fcntl3.c: In function 'Posix_IO_fcntl3': basis/Posix/IO/fcntl3.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/IO/fsync.o basis/Posix/IO/fsync.c basis/Posix/IO/fsync.c: In function 'Posix_IO_fsync': basis/Posix/IO/fsync.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/IO/lseek-consts.o basis/Posix/IO/lseek-consts.c basis/Posix/IO/lseek-consts.c:5: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/lseek-consts.c:5: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/lseek-consts.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/IO/lseek.o basis/Posix/IO/lseek.c basis/Posix/IO/lseek.c: In function 'Posix_IO_lseek': basis/Posix/IO/lseek.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/IO/pipe.o basis/Posix/IO/pipe.c basis/Posix/IO/pipe.c: In function 'Posix_IO_pipe': basis/Posix/IO/pipe.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/IO/read.o basis/Posix/IO/read.c basis/Posix/IO/read.c: In function 'Posix_IO_readWord8': basis/Posix/IO/read.c:18: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/read.c: In function 'Posix_IO_readChar8': basis/Posix/IO/read.c:13: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/IO/write.o basis/Posix/IO/write.c basis/Posix/IO/write.c: In function 'Posix_IO_writeChar8Vec': basis/Posix/IO/write.c:18: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/write.c: In function 'Posix_IO_writeChar8Arr': basis/Posix/IO/write.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/write.c: In function 'Posix_IO_writeWord8Vec': basis/Posix/IO/write.c:28: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/write.c: In function 'Posix_IO_writeWord8Arr': basis/Posix/IO/write.c:23: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/ProcEnv/ProcEnv.o basis/Posix/ProcEnv/ProcEnv.c basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_setuid': basis/Posix/ProcEnv/ProcEnv.c:50: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_setsid': basis/Posix/ProcEnv/ProcEnv.c:46: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_setpgid': basis/Posix/ProcEnv/ProcEnv.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_setgid': basis/Posix/ProcEnv/ProcEnv.c:38: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_getuid': basis/Posix/ProcEnv/ProcEnv.c:34: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_getpgrp': basis/Posix/ProcEnv/ProcEnv.c:30: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_getppid': basis/Posix/ProcEnv/ProcEnv.c:26: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_getpid': basis/Posix/ProcEnv/ProcEnv.c:22: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_getgid': basis/Posix/ProcEnv/ProcEnv.c:18: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_geteuid': basis/Posix/ProcEnv/ProcEnv.c:14: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_getegid': basis/Posix/ProcEnv/ProcEnv.c:10: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_ctermid': basis/Posix/ProcEnv/ProcEnv.c:6: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/ProcEnv/Times.o basis/Posix/ProcEnv/Times.c basis/Posix/ProcEnv/Times.c: In function 'Posix_ProcEnv_Times_getUTime': basis/Posix/ProcEnv/Times.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Times.c: In function 'Posix_ProcEnv_Times_getSTime': basis/Posix/ProcEnv/Times.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Times.c: In function 'Posix_ProcEnv_Times_getCUTime': basis/Posix/ProcEnv/Times.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Times.c: In function 'Posix_ProcEnv_Times_getCSTime': basis/Posix/ProcEnv/Times.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Times.c: In function 'Posix_ProcEnv_times': basis/Posix/ProcEnv/Times.c:23: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/ProcEnv/Uname.o basis/Posix/ProcEnv/Uname.c basis/Posix/ProcEnv/Uname.c: In function 'Posix_ProcEnv_Uname_getSysName': basis/Posix/ProcEnv/Uname.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Uname.c: In function 'Posix_ProcEnv_Uname_getNodeName': basis/Posix/ProcEnv/Uname.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Uname.c: In function 'Posix_ProcEnv_Uname_getRelease': basis/Posix/ProcEnv/Uname.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Uname.c: In function 'Posix_ProcEnv_Uname_getVersion': basis/Posix/ProcEnv/Uname.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Uname.c: In function 'Posix_ProcEnv_Uname_getMachine': basis/Posix/ProcEnv/Uname.c:23: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Uname.c: In function 'Posix_ProcEnv_uname': basis/Posix/ProcEnv/Uname.c:27: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/ProcEnv/environ.o basis/Posix/ProcEnv/environ.c basis/Posix/ProcEnv/environ.c:4: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/ProcEnv/getenv.o basis/Posix/ProcEnv/getenv.c basis/Posix/ProcEnv/getenv.c: In function 'Posix_ProcEnv_getenv': basis/Posix/ProcEnv/getenv.c:6: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/ProcEnv/getgroups.o basis/Posix/ProcEnv/getgroups.c basis/Posix/ProcEnv/getgroups.c: In function 'Posix_ProcEnv_getgroups': basis/Posix/ProcEnv/getgroups.c:9: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/getgroups.c: In function 'Posix_ProcEnv_getgroupsN': basis/Posix/ProcEnv/getgroups.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/ProcEnv/getlogin.o basis/Posix/ProcEnv/getlogin.c basis/Posix/ProcEnv/getlogin.c: In function 'Posix_ProcEnv_getlogin': basis/Posix/ProcEnv/getlogin.c:6: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/ProcEnv/isatty.o basis/Posix/ProcEnv/isatty.c basis/Posix/ProcEnv/isatty.c: In function 'Posix_ProcEnv_isatty': basis/Posix/ProcEnv/isatty.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/ProcEnv/setenv.o basis/Posix/ProcEnv/setenv.c basis/Posix/ProcEnv/setenv.c: In function 'Posix_ProcEnv_setenv': basis/Posix/ProcEnv/setenv.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/ProcEnv/setgroups.o basis/Posix/ProcEnv/setgroups.c basis/Posix/ProcEnv/setgroups.c: In function 'Posix_ProcEnv_setgroups': basis/Posix/ProcEnv/setgroups.c:4: warning: passing argument 2 of 'setgroups' discards qualifiers from pointer target type basis/Posix/ProcEnv/setgroups.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/ProcEnv/sysconf-consts.o basis/Posix/ProcEnv/sysconf-consts.c basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/ProcEnv/sysconf.o basis/Posix/ProcEnv/sysconf.c basis/Posix/ProcEnv/sysconf.c: In function 'Posix_ProcEnv_sysconf': basis/Posix/ProcEnv/sysconf.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/ProcEnv/ttyname.o basis/Posix/ProcEnv/ttyname.c basis/Posix/ProcEnv/ttyname.c: In function 'Posix_ProcEnv_ttyname': basis/Posix/ProcEnv/ttyname.c:6: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/Process/alarm.o basis/Posix/Process/alarm.c basis/Posix/Process/alarm.c: In function 'Posix_Process_alarm': basis/Posix/Process/alarm.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/Process/exece.o basis/Posix/Process/exece.c basis/Posix/Process/exece.c: In function 'Posix_Process_exece': basis/Posix/Process/exece.c:31: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/Process/execp.o basis/Posix/Process/execp.c basis/Posix/Process/execp.c: In function 'Posix_Process_execp': basis/Posix/Process/execp.c:21: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/Process/exit.o basis/Posix/Process/exit.c basis/Posix/Process/exit.c: In function 'Posix_Process_exit': basis/Posix/Process/exit.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/Process/exitStatus.o basis/Posix/Process/exitStatus.c basis/Posix/Process/exitStatus.c: In function 'Posix_Process_exitStatus': basis/Posix/Process/exitStatus.c:8: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/Process/fork.o basis/Posix/Process/fork.c basis/Posix/Process/fork.c: In function 'Posix_Process_fork': basis/Posix/Process/fork.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/Process/ifExited.o basis/Posix/Process/ifExited.c basis/Posix/Process/ifExited.c: In function 'Posix_Process_ifExited': basis/Posix/Process/ifExited.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/Process/ifSignaled.o basis/Posix/Process/ifSignaled.c basis/Posix/Process/ifSignaled.c: In function 'Posix_Process_ifSignaled': basis/Posix/Process/ifSignaled.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/Process/ifStopped.o basis/Posix/Process/ifStopped.c basis/Posix/Process/ifStopped.c: In function 'Posix_Process_ifStopped': basis/Posix/Process/ifStopped.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/Process/kill.o basis/Posix/Process/kill.c basis/Posix/Process/kill.c: In function 'Posix_Process_kill': basis/Posix/Process/kill.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/Process/nanosleep.o basis/Posix/Process/nanosleep.c basis/Posix/Process/nanosleep.c: In function 'Posix_Process_nanosleep': basis/Posix/Process/nanosleep.c:16: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/Process/pause.o basis/Posix/Process/pause.c basis/Posix/Process/pause.c: In function 'Posix_Process_pause': basis/Posix/Process/pause.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/Process/sleep.o basis/Posix/Process/sleep.c basis/Posix/Process/sleep.c: In function 'Posix_Process_sleep': basis/Posix/Process/sleep.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/Process/stopSig.o basis/Posix/Process/stopSig.c basis/Posix/Process/stopSig.c: In function 'Posix_Process_stopSig': basis/Posix/Process/stopSig.c:8: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/Process/system.o basis/Posix/Process/system.c basis/Posix/Process/system.c: In function 'Posix_Process_system': basis/Posix/Process/system.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/Process/termSig.o basis/Posix/Process/termSig.c basis/Posix/Process/termSig.c: In function 'Posix_Process_termSig': basis/Posix/Process/termSig.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/Process/waitpid-consts.o basis/Posix/Process/waitpid-consts.c basis/Posix/Process/waitpid-consts.c:5: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Process/waitpid-consts.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/Process/waitpid.o basis/Posix/Process/waitpid.c basis/Posix/Process/waitpid.c: In function 'Posix_Process_waitpid': basis/Posix/Process/waitpid.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/Signal-consts.o basis/Posix/Signal-consts.c basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/Signal.o basis/Posix/Signal.c basis/Posix/Signal.c: In function 'Posix_Signal_sigsuspend': basis/Posix/Signal.c:119: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_sigprocmask': basis/Posix/Signal.c:112: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_sigismember': basis/Posix/Signal.c:108: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_sigfillset': basis/Posix/Signal.c:104: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_sigemptyset': basis/Posix/Signal.c:100: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_sigdelset': basis/Posix/Signal.c:96: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_sigaddset': basis/Posix/Signal.c:92: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_isPending': basis/Posix/Signal.c:77: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_resetPending': basis/Posix/Signal.c:86: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_isPendingGC': basis/Posix/Signal.c:81: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_handleGC': basis/Posix/Signal.c:73: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_handlee': basis/Posix/Signal.c:69: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_isIgnore': basis/Posix/Signal.c:55: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_ignore': basis/Posix/Signal.c:45: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_isDefault': basis/Posix/Signal.c:35: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_default': basis/Posix/Signal.c:25: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/SysDB/Group.o basis/Posix/SysDB/Group.c basis/Posix/SysDB/Group.c: In function 'Posix_SysDB_Group_getName': basis/Posix/SysDB/Group.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Group.c: In function 'Posix_SysDB_Group_getGId': basis/Posix/SysDB/Group.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Group.c: In function 'Posix_SysDB_Group_getMem': basis/Posix/SysDB/Group.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Group.c: In function 'Posix_SysDB_getgrnam': basis/Posix/SysDB/Group.c:23: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Group.c: In function 'Posix_SysDB_getgrgid': basis/Posix/SysDB/Group.c:19: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/SysDB/Passwd.o basis/Posix/SysDB/Passwd.c basis/Posix/SysDB/Passwd.c: In function 'Posix_SysDB_Passwd_getName': basis/Posix/SysDB/Passwd.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Passwd.c: In function 'Posix_SysDB_Passwd_getUId': basis/Posix/SysDB/Passwd.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Passwd.c: In function 'Posix_SysDB_Passwd_getGId': basis/Posix/SysDB/Passwd.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Passwd.c: In function 'Posix_SysDB_Passwd_getDir': basis/Posix/SysDB/Passwd.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Passwd.c: In function 'Posix_SysDB_Passwd_getShell': basis/Posix/SysDB/Passwd.c:23: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Passwd.c: In function 'Posix_SysDB_getpwuid': basis/Posix/SysDB/Passwd.c:31: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Passwd.c: In function 'Posix_SysDB_getpwnam': basis/Posix/SysDB/Passwd.c:27: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/TTY-consts.o basis/Posix/TTY-consts.c basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Posix/TTY.o basis/Posix/TTY.c basis/Posix/TTY.c: In function 'Posix_TTY_Termios_getIFlag': basis/Posix/TTY.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_getOFlag': basis/Posix/TTY.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_getCFlag': basis/Posix/TTY.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_getLFlag': basis/Posix/TTY.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_getCC': basis/Posix/TTY.c:24: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_setIFlag': basis/Posix/TTY.c:36: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_setOFlag': basis/Posix/TTY.c:40: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_setCFlag': basis/Posix/TTY.c:44: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_setLFlag': basis/Posix/TTY.c:48: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_setCC': basis/Posix/TTY.c:53: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_setpgrp': basis/Posix/TTY.c:93: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_setattr': basis/Posix/TTY.c:89: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_sendbreak': basis/Posix/TTY.c:85: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_getpgrp': basis/Posix/TTY.c:81: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_getattr': basis/Posix/TTY.c:77: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_flush': basis/Posix/TTY.c:73: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_flow': basis/Posix/TTY.c:69: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_drain': basis/Posix/TTY.c:65: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_cfSetISpeed': basis/Posix/TTY.c:61: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_cfSetOSpeed': basis/Posix/TTY.c:57: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_cfGetISpeed': basis/Posix/TTY.c:32: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_cfGetOSpeed': basis/Posix/TTY.c:28: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Real/IEEEReal-consts.o basis/Real/IEEEReal-consts.c basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Real/IEEEReal.o basis/Real/IEEEReal.c basis/Real/IEEEReal.c: In function 'IEEEReal_setRoundingMode': basis/Real/IEEEReal.c:81: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal.c: In function 'IEEEReal_getRoundingMode': basis/Real/IEEEReal.c:76: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Real/Math.o basis/Real/Math.c basis/Real/Math-fns.h: In function 'Real64_abs': basis/Real/Math-fns.h:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_abs': basis/Real/Math-fns.h:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_modf': basis/Real/Math-fns.h:120: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_modf': basis/Real/Math-fns.h:120: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_ldexp': basis/Real/Math-fns.h:83: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_ldexp': basis/Real/Math-fns.h:83: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_frexp': basis/Real/Math-fns.h:69: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_frexp': basis/Real/Math-fns.h:69: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_tanh': basis/Real/Math-fns.h:55: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_tanh': basis/Real/Math-fns.h:55: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_tan': basis/Real/Math-fns.h:54: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_tan': basis/Real/Math-fns.h:54: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_sqrt': basis/Real/Math-fns.h:53: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_sqrt': basis/Real/Math-fns.h:53: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_sinh': basis/Real/Math-fns.h:52: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_sinh': basis/Real/Math-fns.h:52: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_sin': basis/Real/Math-fns.h:51: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_sin': basis/Real/Math-fns.h:51: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_log10': basis/Real/Math-fns.h:50: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_log10': basis/Real/Math-fns.h:50: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_ln': basis/Real/Math-fns.h:49: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_ln': basis/Real/Math-fns.h:49: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_exp': basis/Real/Math-fns.h:48: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_exp': basis/Real/Math-fns.h:48: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_cosh': basis/Real/Math-fns.h:47: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_cosh': basis/Real/Math-fns.h:47: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_cos': basis/Real/Math-fns.h:46: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_cos': basis/Real/Math-fns.h:46: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_atan': basis/Real/Math-fns.h:45: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_atan': basis/Real/Math-fns.h:45: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_asin': basis/Real/Math-fns.h:44: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_asin': basis/Real/Math-fns.h:44: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_acos': basis/Real/Math-fns.h:43: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_acos': basis/Real/Math-fns.h:43: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_pow': basis/Real/Math-fns.h:29: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_pow': basis/Real/Math-fns.h:29: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_atan2': basis/Real/Math-fns.h:28: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_atan2': basis/Real/Math-fns.h:28: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_round': basis/Real/Math-fns.h:14: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_round': basis/Real/Math-fns.h:14: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Real/Real-consts.o basis/Real/Real-consts.c basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -Wno-float-equal -c -o basis/Real/Real.o basis/Real/Real.c basis/Real/Real-ops.h: In function 'Real32_add': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_div': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_mul': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_sub': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_equal': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_le': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_lt': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_muladd': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_mulsub': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_neg': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_fetch': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_store': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_move': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_add': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_div': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_mul': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_sub': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_equal': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_le': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_lt': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_muladd': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_mulsub': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_neg': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_fetch': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_store': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_move': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Real/class.o basis/Real/class.c basis/Real/class.c: In function 'Real64_class': basis/Real/class.c:90: warning: visibility attribute not supported in this configuration; ignored basis/Real/class.c: In function 'Real32_class': basis/Real/class.c:75: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Real/gdtoa.o basis/Real/gdtoa.c In file included from basis/Real/gdtoa.c:2: ./gdtoa/gdtoa.h:116: warning: redundant redeclaration of 'strtof' /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.2.4/include/stdlib.h:140: warning: previous declaration of 'strtof' was here ./gdtoa/gdtoa.h:117: warning: redundant redeclaration of 'strtod' /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.2.4/include/stdlib.h:126: warning: previous declaration of 'strtod' was here basis/Real/gdtoa.c: In function 'Real32_gdtoa': basis/Real/gdtoa.c:28: warning: implicit declaration of function 'gdtoa__gdtoa' basis/Real/gdtoa.c:28: warning: nested extern declaration of 'gdtoa__gdtoa' basis/Real/gdtoa.c:28: warning: assignment makes pointer from integer without a cast basis/Real/gdtoa.c: In function 'Real64_gdtoa': basis/Real/gdtoa.c:63: warning: assignment makes pointer from integer without a cast basis/Real/gdtoa.c: In function 'Real32_gdtoa': basis/Real/gdtoa.c:33: warning: visibility attribute not supported in this configuration; ignored basis/Real/gdtoa.c: In function 'Real64_gdtoa': basis/Real/gdtoa.c:68: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Real/signBit.o basis/Real/signBit.c basis/Real/signBit.c: In function 'Real64_signBit': basis/Real/signBit.c:83: warning: visibility attribute not supported in this configuration; ignored basis/Real/signBit.c: In function 'Real32_signBit': basis/Real/signBit.c:53: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Real/strto.o basis/Real/strto.c In file included from basis/Real/strto.c:2: ./gdtoa/gdtoa.h:116: warning: redundant redeclaration of 'strtof' /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.2.4/include/stdlib.h:140: warning: previous declaration of 'strtof' was here ./gdtoa/gdtoa.h:117: warning: redundant redeclaration of 'strtod' /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.2.4/include/stdlib.h:126: warning: previous declaration of 'strtod' was here basis/Real/strto.c: In function 'Real32_strto': basis/Real/strto.c:9: warning: implicit declaration of function 'gdtoa__strtorf' basis/Real/strto.c:9: warning: nested extern declaration of 'gdtoa__strtorf' basis/Real/strto.c: In function 'Real64_strto': basis/Real/strto.c:19: warning: implicit declaration of function 'gdtoa__strtord' basis/Real/strto.c:19: warning: nested extern declaration of 'gdtoa__strtord' basis/Real/strto.c:22: warning: visibility attribute not supported in this configuration; ignored basis/Real/strto.c: In function 'Real32_strto': basis/Real/strto.c:12: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Stdio.o basis/Stdio.c basis/Stdio.c: In function 'Stdio_printStdout': basis/Stdio.c:17: warning: visibility attribute not supported in this configuration; ignored basis/Stdio.c: In function 'Stdio_printStderr': basis/Stdio.c:9: warning: visibility attribute not supported in this configuration; ignored basis/Stdio.c: In function 'Stdio_print': basis/Stdio.c:21: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/System/CommandLine.o basis/System/CommandLine.c basis/System/CommandLine.c:6: warning: visibility attribute not supported in this configuration; ignored basis/System/CommandLine.c:6: warning: visibility attribute not supported in this configuration; ignored basis/System/CommandLine.c:6: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -Wno-format-nonliteral -c -o basis/System/Date.o basis/System/Date.c basis/System/Date.c: In function 'Date_Tm_getHour': basis/System/Date.c:6: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getIsDst': basis/System/Date.c:7: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getMDay': basis/System/Date.c:8: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getMin': basis/System/Date.c:9: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getMon': basis/System/Date.c:10: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getSec': basis/System/Date.c:11: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getWDay': basis/System/Date.c:12: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getYDay': basis/System/Date.c:13: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getYear': basis/System/Date.c:14: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setHour': basis/System/Date.c:16: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setIsDst': basis/System/Date.c:17: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setMDay': basis/System/Date.c:18: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setMin': basis/System/Date.c:19: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setMon': basis/System/Date.c:20: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setSec': basis/System/Date.c:21: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setWDay': basis/System/Date.c:22: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setYDay': basis/System/Date.c:23: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setYear': basis/System/Date.c:24: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_strfTime': basis/System/Date.c:53: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_mkTime': basis/System/Date.c:49: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_localTime': basis/System/Date.c:45: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_gmTime': basis/System/Date.c:30: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_localOffset': basis/System/Date.c:39: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/System/OS/IO/poll-consts.o basis/System/OS/IO/poll-consts.c basis/System/OS/IO/poll-consts.c:5: warning: visibility attribute not supported in this configuration; ignored basis/System/OS/IO/poll-consts.c:5: warning: visibility attribute not supported in this configuration; ignored basis/System/OS/IO/poll-consts.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/System/OS/IO/poll.o basis/System/OS/IO/poll.c basis/System/OS/IO/poll.c: In function 'OS_IO_poll': basis/System/OS/IO/poll.c:22: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/System/Time.o basis/System/Time.c basis/System/Time.c: In function 'Time_getTimeOfDay': basis/System/Time.c:12: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/Word/Word.o basis/Word/Word.c basis/Word/Word-ops.h: In function 'Word8_add': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_andb': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_equal': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_ge': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_ge': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_gt': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_gt': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_le': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_le': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_lshift': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_lt': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_lt': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_mul': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_mul': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_neg': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_notb': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_quot': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_rem': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_quot': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_rem': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_orb': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_rol': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_ror': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_rshift': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_rshift': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_sub': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_xorb': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_add': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_andb': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_equal': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_ge': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_ge': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_gt': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_gt': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_le': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_le': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_lshift': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_lt': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_lt': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_mul': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_mul': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_neg': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_notb': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_quot': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_rem': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_quot': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_rem': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_orb': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_rol': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_ror': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_rshift': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_rshift': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_sub': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_xorb': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_add': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_andb': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_equal': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_ge': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_ge': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_gt': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_gt': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_le': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_le': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_lshift': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_lt': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_lt': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_mul': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_mul': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_neg': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_notb': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_quot': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_rem': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_quot': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_rem': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_orb': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_rol': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_ror': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_rshift': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_rshift': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_sub': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_xorb': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_add': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_andb': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_equal': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_ge': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_ge': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_gt': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_gt': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_le': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_le': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_lshift': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_lt': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_lt': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_mul': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_mul': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_neg': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_notb': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_quot': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_rem': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_quot': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_rem': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_orb': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_rol': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_ror': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_rshift': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_rshift': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_sub': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_xorb': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_fetch': basis/Word/Word-ops.h:119: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_store': basis/Word/Word-ops.h:119: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_move': basis/Word/Word-ops.h:119: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS8_addCheckOverflows': basis/Word/Word-check.h:157: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU8_addCheckOverflows': basis/Word/Word-check.h:157: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS8_mulCheckOverflows': basis/Word/Word-check.h:157: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU8_mulCheckOverflows': basis/Word/Word-check.h:157: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS8_negCheckOverflows': basis/Word/Word-check.h:157: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS8_subCheckOverflows': basis/Word/Word-check.h:157: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS16_addCheckOverflows': basis/Word/Word-check.h:158: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU16_addCheckOverflows': basis/Word/Word-check.h:158: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS16_mulCheckOverflows': basis/Word/Word-check.h:158: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU16_mulCheckOverflows': basis/Word/Word-check.h:158: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS16_negCheckOverflows': basis/Word/Word-check.h:158: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS16_subCheckOverflows': basis/Word/Word-check.h:158: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS32_addCheckOverflows': basis/Word/Word-check.h:159: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU32_addCheckOverflows': basis/Word/Word-check.h:159: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS32_mulCheckOverflows': basis/Word/Word-check.h:159: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU32_mulCheckOverflows': basis/Word/Word-check.h:159: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS32_negCheckOverflows': basis/Word/Word-check.h:159: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS32_subCheckOverflows': basis/Word/Word-check.h:159: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS64_addCheckOverflows': basis/Word/Word-check.h:160: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU64_addCheckOverflows': basis/Word/Word-check.h:160: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS64_mulCheckOverflows': basis/Word/Word-check.h:160: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU64_mulCheckOverflows': basis/Word/Word-check.h:160: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS64_negCheckOverflows': basis/Word/Word-check.h:160: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS64_subCheckOverflows': basis/Word/Word-check.h:160: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/coerce.o basis/coerce.c basis/coerce.h: In function 'Real32_rndToWordS8': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToWordU8': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordS8': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordU8': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS8_extdToWord8': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU8_extdToWord8': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS8_extdToWord16': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU8_extdToWord16': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS8_extdToWord32': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU8_extdToWord32': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS8_extdToWord64': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU8_extdToWord64': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToWordS16': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToWordU16': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordS16': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordU16': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS16_extdToWord8': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU16_extdToWord8': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS16_extdToWord16': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU16_extdToWord16': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS16_extdToWord32': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU16_extdToWord32': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS16_extdToWord64': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU16_extdToWord64': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToWordS32': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToWordU32': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordS32': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordU32': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS32_extdToWord8': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU32_extdToWord8': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS32_extdToWord16': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU32_extdToWord16': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS32_extdToWord32': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU32_extdToWord32': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS32_extdToWord64': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU32_extdToWord64': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToWordS64': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToWordU64': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordS64': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordU64': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS64_extdToWord8': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU64_extdToWord8': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS64_extdToWord16': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU64_extdToWord16': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS64_extdToWord32': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU64_extdToWord32': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS64_extdToWord64': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU64_extdToWord64': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToReal32': basis/coerce.h:31: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToReal64': basis/coerce.h:32: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToReal32': basis/coerce.h:33: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToReal64': basis/coerce.h:34: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_castToWord32': basis/coerce.h:46: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Word32_castToReal32': basis/coerce.h:47: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_castToWord64': basis/coerce.h:48: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Word64_castToReal64': basis/coerce.h:49: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS8_rndToReal32': basis/coerce.c:21: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU8_rndToReal32': basis/coerce.c:21: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS8_rndToReal64': basis/coerce.c:21: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU8_rndToReal64': basis/coerce.c:21: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS16_rndToReal32': basis/coerce.c:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU16_rndToReal32': basis/coerce.c:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS16_rndToReal64': basis/coerce.c:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU16_rndToReal64': basis/coerce.c:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS32_rndToReal32': basis/coerce.c:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU32_rndToReal32': basis/coerce.c:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS32_rndToReal64': basis/coerce.c:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU32_rndToReal64': basis/coerce.c:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS64_rndToReal32': basis/coerce.c:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU64_rndToReal32': basis/coerce.c:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS64_rndToReal64': basis/coerce.c:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU64_rndToReal64': basis/coerce.c:24: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wdisabled-optimization -c -o basis/cpointer.o basis/cpointer.c basis/cpointer.h: In function 'CPointer_add': basis/cpointer.h:20: warning: visibility attribute not supported in this configuration; ignored basis/cpointer.h: In function 'CPointer_diff': basis/cpointer.h:24: warning: visibility attribute not supported in this configuration; ignored basis/cpointer.h: In function 'CPointer_equal': basis/cpointer.h:28: warning: visibility attribute not supported in this configuration; ignored basis/cpointer.h: In function 'CPointer_fromWord': basis/cpointer.h:32: warning: visibility attribute not supported in this configuration; ignored basis/cpointer.h: In function 'CPointer_lt': basis/cpointer.h:36: warning: visibility attribute not supported in this configuration; ignored basis/cpointer.h: In function 'CPointer_sub': basis/cpointer.h:40: warning: visibility attribute not supported in this configuration; ignored basis/cpointer.h: In function 'CPointer_toWord': basis/cpointer.h:44: warning: visibility attribute not supported in this configuration; ignored ar -X 64 rc libmlton.a util.o gc.o platform.o platform/aix.o bytecode/interpret.o basis/MLton/Itimer/itimer-consts.o basis/MLton/Itimer/set.o basis/MLton/Process/spawne.o basis/MLton/Process/spawnp.o basis/MLton/Rlimit/rlimit-consts.o basis/MLton/Rlimit/rlimit.o basis/MLton/Rusage/rusage.o basis/MLton/Syslog/Syslog-consts.o basis/MLton/Syslog/Syslog.o basis/MLton/bug.o basis/Net/Net.o basis/Net/NetHostDB-consts.o basis/Net/NetHostDB.o basis/Net/NetProtDB.o basis/Net/NetServDB.o basis/Net/Socket/GenericSock.o basis/Net/Socket/INetSock-consts.o basis/Net/Socket/INetSock.o basis/Net/Socket/Socket-consts.o basis/Net/Socket/Socket.o basis/Net/Socket/UnixSock.o basis/Net/Socket/select.o basis/Posix/Error-consts.o basis/Posix/Error.o basis/Posix/FileSys/Dirstream.o basis/Posix/FileSys/FileSys-consts.o basis/Posix/FileSys/ST.o basis/Posix/FileSys/Stat.o basis/Posix/FileSys/Utimbuf.o basis/Posix/FileSys/access.o basis/Posix/FileSys/chdir.o basis/Posix/FileSys/chmod.o basis/Posix/FileSys/chown.o basis/Posix/FileSys/fchdir.o basis/Posix/FileSys/fchmod.o basis/Posix/FileSys/fchown.o basis/Posix/FileSys/fpathconf.o basis/Posix/FileSys/ftruncate.o basis/Posix/FileSys/getcwd.o basis/Posix/FileSys/link.o basis/Posix/FileSys/mkdir.o basis/Posix/FileSys/mkfifo.o basis/Posix/FileSys/open2.o basis/Posix/FileSys/open3.o basis/Posix/FileSys/pathconf.o basis/Posix/FileSys/readlink.o basis/Posix/FileSys/rename.o basis/Posix/FileSys/rmdir.o basis/Posix/FileSys/symlink.o basis/Posix/FileSys/truncate.o basis/Posix/FileSys/umask.o basis/Posix/FileSys/unlink.o basis/Posix/IO/FLock-consts.o basis/Posix/IO/FLock.o basis/Posix/IO/close.o basis/Posix/IO/dup.o basis/Posix/IO/dup2.o basis/Posix/IO/fcntl-consts.o basis/Posix/IO/fcntl2.o basis/Posix/IO/fcntl3.o basis/Posix/IO/fsync.o basis/Posix/IO/lseek-consts.o basis/Posix/IO/lseek.o basis/Posix/IO/pipe.o basis/Posix/IO/read.o basis/Posix/IO/write.o basis/Posix/ProcEnv/ProcEnv.o basis/Posix/ProcEnv/Times.o basis/Posix/ProcEnv/Uname.o basis/Posix/ProcEnv/environ.o basis/Posix/ProcEnv/getenv.o basis/Posix/ProcEnv/getgroups.o basis/Posix/ProcEnv/getlogin.o basis/Posix/ProcEnv/isatty.o basis/Posix/ProcEnv/setenv.o basis/Posix/ProcEnv/setgroups.o basis/Posix/ProcEnv/sysconf-consts.o basis/Posix/ProcEnv/sysconf.o basis/Posix/ProcEnv/ttyname.o basis/Posix/Process/alarm.o basis/Posix/Process/exece.o basis/Posix/Process/execp.o basis/Posix/Process/exit.o basis/Posix/Process/exitStatus.o basis/Posix/Process/fork.o basis/Posix/Process/ifExited.o basis/Posix/Process/ifSignaled.o basis/Posix/Process/ifStopped.o basis/Posix/Process/kill.o basis/Posix/Process/nanosleep.o basis/Posix/Process/pause.o basis/Posix/Process/sleep.o basis/Posix/Process/stopSig.o basis/Posix/Process/system.o basis/Posix/Process/termSig.o basis/Posix/Process/waitpid-consts.o basis/Posix/Process/waitpid.o basis/Posix/Signal-consts.o basis/Posix/Signal.o basis/Posix/SysDB/Group.o basis/Posix/SysDB/Passwd.o basis/Posix/TTY-consts.o basis/Posix/TTY.o basis/Real/IEEEReal-consts.o basis/Real/IEEEReal.o basis/Real/Math.o basis/Real/Real-consts.o basis/Real/Real.o basis/Real/class.o basis/Real/gdtoa.o basis/Real/signBit.o basis/Real/strto.o basis/Stdio.o basis/System/CommandLine.o basis/System/Date.o basis/System/OS/IO/poll-consts.o basis/System/OS/IO/poll.o basis/System/Time.o basis/Word/Word.o basis/coerce.o basis/cpointer.o ranlib libmlton.a gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o util-gdb.o util.c util/to-string.c: In function 'boolToString': util/to-string.c:12: warning: visibility attribute not supported in this configuration; ignored util/to-string.c: In function 'uintmaxToCommaString': util/to-string.c:104: warning: visibility attribute not supported in this configuration; ignored util/to-string.c: In function 'intmaxToCommaString': util/to-string.c:76: warning: visibility attribute not supported in this configuration; ignored util/die.c: In function 'diee': util/die.c:31: warning: visibility attribute not supported in this configuration; ignored util/die.c: In function 'die': util/die.c:19: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o gc-gdb.o gc.c gc/array.c: In function 'GC_getArrayLength': gc/array.c:29: warning: visibility attribute not supported in this configuration; ignored gc/call-stack.c: In function 'GC_frameIndexSourceSeq': gc/call-stack.c:46: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getAmOriginal': gc/gc_state.c:109: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setAmOriginal': gc/gc_state.c:112: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setControlsMessages': gc/gc_state.c:116: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setControlsSummary': gc/gc_state.c:120: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setControlsRusageMeasureGC': gc/gc_state.c:124: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getCumulativeStatisticsBytesAllocated': gc/gc_state.c:128: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getCumulativeStatisticsNumCopyingGCs': gc/gc_state.c:132: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getCumulativeStatisticsNumMarkCompactGCs': gc/gc_state.c:136: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getCumulativeStatisticsNumMinorGCs': gc/gc_state.c:140: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getCumulativeStatisticsMaxBytesLive': gc/gc_state.c:144: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setHashConsDuringGC': gc/gc_state.c:148: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getLastMajorStatisticsBytesLive': gc/gc_state.c:152: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getRusageGCAddr': gc/gc_state.c:194: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getSignalsHandledAddr': gc/gc_state.c:198: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getSignalsPendingAddr': gc/gc_state.c:202: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setGCSignalHandled': gc/gc_state.c:206: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getGCSignalPending': gc/gc_state.c:210: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setGCSignalPending': gc/gc_state.c:214: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'initIntInf': gc/int-inf.c:423: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getCurrentThread': gc/gc_state.c:168: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getCallFromCHandlerThread': gc/gc_state.c:158: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setSignalHandlerThread': gc/gc_state.c:190: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setCallFromCHandlerThread': gc/gc_state.c:163: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_getProfileCurrent': gc/profiling.c:506: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_setProfileCurrent': gc/profiling.c:509: warning: visibility attribute not supported in this configuration; ignored gc/world.c: In function 'GC_getSaveWorldStatus': gc/world.c:115: warning: visibility attribute not supported in this configuration; ignored gc/sources.c: In function 'GC_sourceName': gc/sources.c:24: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileLeave': gc/profiling.c:168: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileInc': gc/profiling.c:208: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileAllocInc': gc/profiling.c:216: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileEnter': gc/profiling.c:108: warning: visibility attribute not supported in this configuration; ignored gc/weak.c: In function 'GC_weakCanGet': gc/weak.c:42: warning: visibility attribute not supported in this configuration; ignored gc/handler.c: In function 'GC_finishSignalHandler': gc/handler.c:43: warning: visibility attribute not supported in this configuration; ignored gc/handler.c: In function 'GC_startSignalHandler': gc/handler.c:36: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setSavedThread': gc/gc_state.c:185: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getSavedThread': gc/gc_state.c:177: warning: visibility attribute not supported in this configuration; ignored gc/weak.c: In function 'GC_weakNew': gc/weak.c:69: warning: visibility attribute not supported in this configuration; ignored gc/weak.c: In function 'GC_weakGet': gc/weak.c:54: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_lshift': gc/int-inf.c:307: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_arshift': gc/int-inf.c:300: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_notb': gc/int-inf.c:279: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_neg': gc/int-inf.c:272: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_xorb': gc/int-inf.c:253: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_sub': gc/int-inf.c:246: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_rem': gc/int-inf.c:239: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_orb': gc/int-inf.c:232: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_quot': gc/int-inf.c:225: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_mul': gc/int-inf.c:218: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_gcd': gc/int-inf.c:211: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_andb': gc/int-inf.c:204: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_add': gc/int-inf.c:197: warning: visibility attribute not supported in this configuration; ignored gc/call-stack.c: In function 'GC_callStack': gc/call-stack.c:36: warning: visibility attribute not supported in this configuration; ignored gc/call-stack.c: In function 'GC_numStackFrames': gc/call-stack.c:21: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'profileMalloc': gc/profiling.c:234: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileMalloc': gc/profiling.c:238: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'profileFree': gc/profiling.c:247: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileFree': gc/profiling.c:251: warning: visibility attribute not supported in this configuration; ignored gc/size.c: In function 'GC_size': gc/size.c:22: warning: visibility attribute not supported in this configuration; ignored gc/share.c: In function 'GC_share': gc/share.c:29: warning: visibility attribute not supported in this configuration; ignored gc/virtual-memory.c: In function 'GC_mmapAnon_safe': gc/virtual-memory.c:19: warning: visibility attribute not supported in this configuration; ignored gc/pack.c: In function 'GC_unpack': gc/pack.c:64: warning: visibility attribute not supported in this configuration; ignored gc/world.c: In function 'GC_saveWorld': gc/world.c:111: warning: visibility attribute not supported in this configuration; ignored gc/switch-thread.c: In function 'GC_switchToThread': gc/switch-thread.c:68: warning: visibility attribute not supported in this configuration; ignored gc/pack.c: In function 'GC_pack': gc/pack.c:37: warning: visibility attribute not supported in this configuration; ignored gc/copy-thread.c: In function 'GC_copyThread': gc/copy-thread.c:75: warning: visibility attribute not supported in this configuration; ignored gc/copy-thread.c: In function 'GC_copyCurrentThread': gc/copy-thread.c:54: warning: visibility attribute not supported in this configuration; ignored gc/garbage-collection.c: In function 'GC_collect': gc/garbage-collection.c:234: warning: visibility attribute not supported in this configuration; ignored gc/array-allocate.c: In function 'GC_arrayAllocate': gc/array-allocate.c:119: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileDone': gc/profiling.c:501: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'profileWrite': gc/profiling.c:315: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileWrite': gc/profiling.c:319: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_toString': gc/int-inf.c:375: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_compare': gc/int-inf.c:327: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_equal': gc/int-inf.c:339: warning: visibility attribute not supported in this configuration; ignored gc/init.c: In function 'GC_init': gc/init.c:395: warning: visibility attribute not supported in this configuration; ignored gc/handler.c: In function 'GC_handler': gc/handler.c:69: warning: visibility attribute not supported in this configuration; ignored gc/done.c: In function 'GC_done': gc/done.c:96: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o platform-gdb.o platform.c platform.c: In function 'GC_setCygwinUseMmap': platform.c:14: warning: visibility attribute not supported in this configuration; ignored platform.c: In function 'MLton_allocTooLarge': platform.c:37: warning: visibility attribute not supported in this configuration; ignored platform.c: In function 'MLton_halt': platform.c:31: warning: visibility attribute not supported in this configuration; ignored platform.c: In function 'MLton_init': platform.c:26: warning: visibility attribute not supported in this configuration; ignored platform.c: At top level: platform.c:37: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o platform/aix-gdb.o platform/aix.c platform/aix.c: In function 'GC_displayMem': platform/aix.c:173: warning: pointer of type 'void *' used in arithmetic platform/aix.c:181: warning: format '%08llx' expects type 'long long unsigned int', but argument 2 has type 'prptr64_t' platform/aix.c:181: warning: format '%08llx' expects type 'long long unsigned int', but argument 3 has type 'prptr64_t' platform/nonwin.c: In function 'MLton_Process_cwait': platform/nonwin.c:23: warning: visibility attribute not supported in this configuration; ignored platform/nonwin.c: In function 'Posix_IO_settext': platform/nonwin.c:13: warning: visibility attribute not supported in this configuration; ignored platform/nonwin.c: In function 'Posix_IO_setbin': platform/nonwin.c:8: warning: visibility attribute not supported in this configuration; ignored platform/aix.c: In function 'GC_displayMem': platform/aix.c:183: warning: visibility attribute not supported in this configuration; ignored platform/aix.c: In function 'GC_physMem': platform/aix.c:75: warning: visibility attribute not supported in this configuration; ignored platform/aix.c: In function 'GC_pageSize': platform/aix.c:62: warning: visibility attribute not supported in this configuration; ignored platform/aix.c: In function 'fpclassify64': platform/aix.c:52: warning: visibility attribute not supported in this configuration; ignored platform/aix.c: In function 'fesetround': platform/aix.c:27: warning: visibility attribute not supported in this configuration; ignored platform/aix.c: In function 'fegetround': platform/aix.c:22: warning: visibility attribute not supported in this configuration; ignored platform/use-mmap.c: In function 'GC_mmapAnon': platform/use-mmap.c:9: warning: visibility attribute not supported in this configuration; ignored platform/use-mmap.c: In function 'GC_release': platform/use-mmap.c:5: warning: visibility attribute not supported in this configuration; ignored platform/recv.nonblock.c: In function 'MLton_recvfrom': platform/recv.nonblock.c:38: warning: visibility attribute not supported in this configuration; ignored platform/recv.nonblock.c: In function 'MLton_recv': platform/recv.nonblock.c:28: warning: visibility attribute not supported in this configuration; ignored platform/mmap-protect.c: In function 'GC_mmapAnon_safe_protect': platform/mmap-protect.c:16: warning: visibility attribute not supported in this configuration; ignored platform/mkdir2.c: In function 'mkdir2': platform/mkdir2.c:3: warning: visibility attribute not supported in this configuration; ignored platform/diskBack.unix.c: In function 'GC_diskBack_write': platform/diskBack.unix.c:59: warning: visibility attribute not supported in this configuration; ignored platform/diskBack.unix.c: In function 'GC_diskBack_close': platform/diskBack.unix.c:48: warning: visibility attribute not supported in this configuration; ignored platform/diskBack.unix.c: In function 'GC_diskBack_read': platform/diskBack.unix.c:40: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I../include -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wno-float-equal -c -o bytecode/interpret-gdb.o bytecode/interpret.c bytecode/interpret.c: In function 'MLton_Bytecode_interpret': bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c: At top level: bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/MLton/Itimer/itimer-consts-gdb.o basis/MLton/Itimer/itimer-consts.c basis/MLton/Itimer/itimer-consts.c:5: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Itimer/itimer-consts.c:5: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Itimer/itimer-consts.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/MLton/Itimer/set-gdb.o basis/MLton/Itimer/set.c basis/MLton/Itimer/set.c: In function 'MLton_Itimer_set': basis/MLton/Itimer/set.c:16: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/MLton/Process/spawne-gdb.o basis/MLton/Process/spawne.c basis/MLton/Process/spawne.c: In function 'MLton_Process_spawne': basis/MLton/Process/spawne.c:42: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/MLton/Process/spawnp-gdb.o basis/MLton/Process/spawnp.c basis/MLton/Process/spawnp.c: In function 'MLton_Process_spawnp': basis/MLton/Process/spawnp.c:31: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/MLton/Rlimit/rlimit-consts-gdb.o basis/MLton/Rlimit/rlimit-consts.c basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/MLton/Rlimit/rlimit-gdb.o basis/MLton/Rlimit/rlimit.c basis/MLton/Rlimit/rlimit.c: In function 'MLton_Rlimit_getHard': basis/MLton/Rlimit/rlimit.c:11: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit.c: In function 'MLton_Rlimit_getSoft': basis/MLton/Rlimit/rlimit.c:15: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit.c: In function 'MLton_Rlimit_set': basis/MLton/Rlimit/rlimit.c:21: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit.c: In function 'MLton_Rlimit_get': basis/MLton/Rlimit/rlimit.c:7: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/MLton/Rusage/rusage-gdb.o basis/MLton/Rusage/rusage.c basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_self_utime_sec': basis/MLton/Rusage/rusage.c:11: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_self_utime_usec': basis/MLton/Rusage/rusage.c:15: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_self_stime_sec': basis/MLton/Rusage/rusage.c:19: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_self_stime_usec': basis/MLton/Rusage/rusage.c:23: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_children_utime_sec': basis/MLton/Rusage/rusage.c:27: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_children_utime_usec': basis/MLton/Rusage/rusage.c:31: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_children_stime_sec': basis/MLton/Rusage/rusage.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_children_stime_usec': basis/MLton/Rusage/rusage.c:39: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_gc_utime_sec': basis/MLton/Rusage/rusage.c:43: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_gc_utime_usec': basis/MLton/Rusage/rusage.c:47: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_gc_stime_sec': basis/MLton/Rusage/rusage.c:51: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_gc_stime_usec': basis/MLton/Rusage/rusage.c:55: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_getrusage': basis/MLton/Rusage/rusage.c:61: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/MLton/Syslog/Syslog-consts-gdb.o basis/MLton/Syslog/Syslog-consts.c basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/MLton/Syslog/Syslog-gdb.o basis/MLton/Syslog/Syslog.c basis/MLton/Syslog/Syslog.c: In function 'MLton_Syslog_syslog': basis/MLton/Syslog/Syslog.c:17: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog.c: In function 'MLton_Syslog_openlog': basis/MLton/Syslog/Syslog.c:13: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog.c: In function 'MLton_Syslog_closelog': basis/MLton/Syslog/Syslog.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/MLton/bug-gdb.o basis/MLton/bug.c basis/MLton/bug.c: In function 'MLton_bug': basis/MLton/bug.c:12: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/Net-gdb.o basis/Net/Net.c basis/Net/Net.c: In function 'Net_htonl': basis/Net/Net.c:12: warning: visibility attribute not supported in this configuration; ignored basis/Net/Net.c: In function 'Net_ntohl': basis/Net/Net.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Net/Net.c: In function 'Net_htons': basis/Net/Net.c:26: warning: visibility attribute not supported in this configuration; ignored basis/Net/Net.c: In function 'Net_ntohs': basis/Net/Net.c:33: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/NetHostDB-consts-gdb.o basis/Net/NetHostDB-consts.c basis/Net/NetHostDB-consts.c:4: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB-consts.c:4: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/NetHostDB-gdb.o basis/Net/NetHostDB.c basis/Net/NetHostDB.c: In function 'NetHostDB_getEntryName': basis/Net/NetHostDB.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getEntryAliasesNum': basis/Net/NetHostDB.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getEntryAliasesN': basis/Net/NetHostDB.c:17: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getEntryAddrType': basis/Net/NetHostDB.c:21: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getEntryLength': basis/Net/NetHostDB.c:25: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getEntryAddrsNum': basis/Net/NetHostDB.c:31: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getEntryAddrsN': basis/Net/NetHostDB.c:39: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getHostName': basis/Net/NetHostDB.c:56: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getByName': basis/Net/NetHostDB.c:51: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getByAddress': basis/Net/NetHostDB.c:45: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/NetProtDB-gdb.o basis/Net/NetProtDB.c basis/Net/NetProtDB.c: In function 'NetProtDB_getEntryName': basis/Net/NetProtDB.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetProtDB.c: In function 'NetProtDB_getEntryAliasesNum': basis/Net/NetProtDB.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetProtDB.c: In function 'NetProtDB_getEntryAliasesN': basis/Net/NetProtDB.c:17: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetProtDB.c: In function 'NetProtDB_getEntryProto': basis/Net/NetProtDB.c:21: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetProtDB.c: In function 'NetProtDB_getByNumber': basis/Net/NetProtDB.c:31: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetProtDB.c: In function 'NetProtDB_getByName': basis/Net/NetProtDB.c:26: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/NetServDB-gdb.o basis/Net/NetServDB.c basis/Net/NetServDB.c: In function 'NetServDB_getEntryName': basis/Net/NetServDB.c:10: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getEntryAliasesNum': basis/Net/NetServDB.c:16: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getEntryAliasesN': basis/Net/NetServDB.c:20: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getEntryPort': basis/Net/NetServDB.c:24: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getEntryProto': basis/Net/NetServDB.c:28: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getByPort': basis/Net/NetServDB.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getByPortNull': basis/Net/NetServDB.c:46: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getByName': basis/Net/NetServDB.c:33: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getByNameNull': basis/Net/NetServDB.c:37: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/Socket/GenericSock-gdb.o basis/Net/Socket/GenericSock.c basis/Net/Socket/GenericSock.c: In function 'Socket_GenericSock_socketPair': basis/Net/Socket/GenericSock.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/GenericSock.c: In function 'Socket_GenericSock_socket': basis/Net/Socket/GenericSock.c:7: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/Socket/INetSock-consts-gdb.o basis/Net/Socket/INetSock-consts.c basis/Net/Socket/INetSock-consts.c:4: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/INetSock-consts.c:4: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/Socket/INetSock-gdb.o basis/Net/Socket/INetSock.c basis/Net/Socket/INetSock.c: In function 'Socket_INetSock_toAddr': basis/Net/Socket/INetSock.c:12: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/INetSock.c: In function 'Socket_INetSock_getPort': basis/Net/Socket/INetSock.c:27: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/INetSock.c: In function 'Socket_INetSock_getInAddr': basis/Net/Socket/INetSock.c:31: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/INetSock.c: In function 'Socket_INetSock_fromAddr': basis/Net/Socket/INetSock.c:23: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/Socket/Socket-consts-gdb.o basis/Net/Socket/Socket-consts.c basis/Net/Socket/Socket-consts.c:40: warning: overflow in implicit constant conversion basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/Socket/Socket-gdb.o basis/Net/Socket/Socket.c basis/Net/Socket/Socket.c: In function 'Socket_familyOfAddr': basis/Net/Socket/Socket.c:28: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_Ctl_getSockName': basis/Net/Socket/Socket.c:130: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_Ctl_getPeerName': basis/Net/Socket/Socket.c:125: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_Ctl_setIOCtl': basis/Net/Socket/Socket.c:120: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_Ctl_getIOCtl': basis/Net/Socket/Socket.c:114: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_Ctl_setSockOpt': basis/Net/Socket/Socket.c:108: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_Ctl_getSockOpt': basis/Net/Socket/Socket.c:101: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_shutdown': basis/Net/Socket/Socket.c:94: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_sendVecTo': basis/Net/Socket/Socket.c:89: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_sendArrTo': basis/Net/Socket/Socket.c:83: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_sendVec': basis/Net/Socket/Socket.c:67: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_sendArr': basis/Net/Socket/Socket.c:62: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_recvFrom': basis/Net/Socket/Socket.c:49: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_recv': basis/Net/Socket/Socket.c:40: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_listen': basis/Net/Socket/Socket.c:33: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_connect': basis/Net/Socket/Socket.c:24: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_close': basis/Net/Socket/Socket.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_bind': basis/Net/Socket/Socket.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_accept': basis/Net/Socket/Socket.c:6: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/Socket/UnixSock-gdb.o basis/Net/Socket/UnixSock.c basis/Net/Socket/UnixSock.c: In function 'Socket_UnixSock_toAddr': basis/Net/Socket/UnixSock.c:22: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/UnixSock.c: In function 'Socket_UnixSock_pathLen': basis/Net/Socket/UnixSock.c:35: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/UnixSock.c: In function 'Socket_UnixSock_fromAddr': basis/Net/Socket/UnixSock.c:45: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/Socket/select-gdb.o basis/Net/Socket/select.c basis/Net/Socket/select.c: In function 'Socket_setTimeout': basis/Net/Socket/select.c:10: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/select.c: In function 'Socket_getTimeout_sec': basis/Net/Socket/select.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/select.c: In function 'Socket_getTimeout_usec': basis/Net/Socket/select.c:16: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/select.c: In function 'Socket_setTimeoutNull': basis/Net/Socket/select.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/select.c: In function 'Socket_select': basis/Net/Socket/select.c:93: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Error-consts-gdb.o basis/Posix/Error-consts.c basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Error-gdb.o basis/Posix/Error.c basis/Posix/Error.c: In function 'Posix_Error_clearErrno': basis/Posix/Error.c:5: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error.c: In function 'Posix_Error_getErrno': basis/Posix/Error.c:9: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error.c: In function 'Posix_Error_strError': basis/Posix/Error.c:14: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/Dirstream-gdb.o basis/Posix/FileSys/Dirstream.c basis/Posix/FileSys/Dirstream.c: In function 'Posix_FileSys_Dirstream_rewindDir': basis/Posix/FileSys/Dirstream.c:23: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Dirstream.c: In function 'Posix_FileSys_Dirstream_readDir': basis/Posix/FileSys/Dirstream.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Dirstream.c: In function 'Posix_FileSys_Dirstream_openDir': basis/Posix/FileSys/Dirstream.c:10: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Dirstream.c: In function 'Posix_FileSys_Dirstream_closeDir': basis/Posix/FileSys/Dirstream.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/FileSys-consts-gdb.o basis/Posix/FileSys/FileSys-consts.c basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/ST-gdb.o basis/Posix/FileSys/ST.c basis/Posix/FileSys/ST.c: In function 'Posix_FileSys_ST_isBlk': basis/Posix/FileSys/ST.c:5: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/ST.c: In function 'Posix_FileSys_ST_isChr': basis/Posix/FileSys/ST.c:9: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/ST.c: In function 'Posix_FileSys_ST_isDir': basis/Posix/FileSys/ST.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/ST.c: In function 'Posix_FileSys_ST_isFIFO': basis/Posix/FileSys/ST.c:17: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/ST.c: In function 'Posix_FileSys_ST_isLink': basis/Posix/FileSys/ST.c:21: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/ST.c: In function 'Posix_FileSys_ST_isReg': basis/Posix/FileSys/ST.c:25: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/ST.c: In function 'Posix_FileSys_ST_isSock': basis/Posix/FileSys/ST.c:29: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/Stat-gdb.o basis/Posix/FileSys/Stat.c basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getDev': basis/Posix/FileSys/Stat.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getINo': basis/Posix/FileSys/Stat.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getMode': basis/Posix/FileSys/Stat.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getNLink': basis/Posix/FileSys/Stat.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getUId': basis/Posix/FileSys/Stat.c:23: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getGId': basis/Posix/FileSys/Stat.c:27: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getRDev': basis/Posix/FileSys/Stat.c:31: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getSize': basis/Posix/FileSys/Stat.c:35: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getATime': basis/Posix/FileSys/Stat.c:39: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getMTime': basis/Posix/FileSys/Stat.c:43: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getCTime': basis/Posix/FileSys/Stat.c:47: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_stat': basis/Posix/FileSys/Stat.c:69: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_lstat': basis/Posix/FileSys/Stat.c:65: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_fstat': basis/Posix/FileSys/Stat.c:61: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/Utimbuf-gdb.o basis/Posix/FileSys/Utimbuf.c basis/Posix/FileSys/Utimbuf.c: In function 'Posix_FileSys_Utimbuf_setAcTime': basis/Posix/FileSys/Utimbuf.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Utimbuf.c: In function 'Posix_FileSys_Utimbuf_setModTime': basis/Posix/FileSys/Utimbuf.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Utimbuf.c: In function 'Posix_FileSys_Utimbuf_utime': basis/Posix/FileSys/Utimbuf.c:15: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/access-gdb.o basis/Posix/FileSys/access.c basis/Posix/FileSys/access.c: In function 'Posix_FileSys_access': basis/Posix/FileSys/access.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/chdir-gdb.o basis/Posix/FileSys/chdir.c basis/Posix/FileSys/chdir.c: In function 'Posix_FileSys_chdir': basis/Posix/FileSys/chdir.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/chmod-gdb.o basis/Posix/FileSys/chmod.c basis/Posix/FileSys/chmod.c: In function 'Posix_FileSys_chmod': basis/Posix/FileSys/chmod.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/chown-gdb.o basis/Posix/FileSys/chown.c basis/Posix/FileSys/chown.c: In function 'Posix_FileSys_chown': basis/Posix/FileSys/chown.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/fchdir-gdb.o basis/Posix/FileSys/fchdir.c basis/Posix/FileSys/fchdir.c: In function 'Posix_FileSys_fchdir': basis/Posix/FileSys/fchdir.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/fchmod-gdb.o basis/Posix/FileSys/fchmod.c basis/Posix/FileSys/fchmod.c: In function 'Posix_FileSys_fchmod': basis/Posix/FileSys/fchmod.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/fchown-gdb.o basis/Posix/FileSys/fchown.c basis/Posix/FileSys/fchown.c: In function 'Posix_FileSys_fchown': basis/Posix/FileSys/fchown.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/fpathconf-gdb.o basis/Posix/FileSys/fpathconf.c basis/Posix/FileSys/fpathconf.c: In function 'Posix_FileSys_fpathconf': basis/Posix/FileSys/fpathconf.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/ftruncate-gdb.o basis/Posix/FileSys/ftruncate.c basis/Posix/FileSys/ftruncate.c: In function 'Posix_FileSys_ftruncate': basis/Posix/FileSys/ftruncate.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/getcwd-gdb.o basis/Posix/FileSys/getcwd.c basis/Posix/FileSys/getcwd.c: In function 'Posix_FileSys_getcwd': basis/Posix/FileSys/getcwd.c:6: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/link-gdb.o basis/Posix/FileSys/link.c basis/Posix/FileSys/link.c: In function 'Posix_FileSys_link': basis/Posix/FileSys/link.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/mkdir-gdb.o basis/Posix/FileSys/mkdir.c basis/Posix/FileSys/mkdir.c: In function 'Posix_FileSys_mkdir': basis/Posix/FileSys/mkdir.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/mkfifo-gdb.o basis/Posix/FileSys/mkfifo.c basis/Posix/FileSys/mkfifo.c: In function 'Posix_FileSys_mkfifo': basis/Posix/FileSys/mkfifo.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/open2-gdb.o basis/Posix/FileSys/open2.c basis/Posix/FileSys/open2.c: In function 'Posix_FileSys_open2': basis/Posix/FileSys/open2.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/open3-gdb.o basis/Posix/FileSys/open3.c basis/Posix/FileSys/open3.c: In function 'Posix_FileSys_open3': basis/Posix/FileSys/open3.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/pathconf-gdb.o basis/Posix/FileSys/pathconf.c basis/Posix/FileSys/pathconf.c: In function 'Posix_FileSys_pathconf': basis/Posix/FileSys/pathconf.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/readlink-gdb.o basis/Posix/FileSys/readlink.c basis/Posix/FileSys/readlink.c: In function 'Posix_FileSys_readlink': basis/Posix/FileSys/readlink.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/rename-gdb.o basis/Posix/FileSys/rename.c basis/Posix/FileSys/rename.c: In function 'Posix_FileSys_rename': basis/Posix/FileSys/rename.c:17: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/rmdir-gdb.o basis/Posix/FileSys/rmdir.c basis/Posix/FileSys/rmdir.c: In function 'Posix_FileSys_rmdir': basis/Posix/FileSys/rmdir.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/symlink-gdb.o basis/Posix/FileSys/symlink.c basis/Posix/FileSys/symlink.c: In function 'Posix_FileSys_symlink': basis/Posix/FileSys/symlink.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/truncate-gdb.o basis/Posix/FileSys/truncate.c basis/Posix/FileSys/truncate.c: In function 'Posix_FileSys_truncate': basis/Posix/FileSys/truncate.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/umask-gdb.o basis/Posix/FileSys/umask.c basis/Posix/FileSys/umask.c: In function 'Posix_FileSys_umask': basis/Posix/FileSys/umask.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/unlink-gdb.o basis/Posix/FileSys/unlink.c basis/Posix/FileSys/unlink.c: In function 'Posix_FileSys_unlink': basis/Posix/FileSys/unlink.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/FLock-consts-gdb.o basis/Posix/IO/FLock-consts.c basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/FLock-gdb.o basis/Posix/IO/FLock.c basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_getType': basis/Posix/IO/FLock.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_getWhence': basis/Posix/IO/FLock.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_getStart': basis/Posix/IO/FLock.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_getLen': basis/Posix/IO/FLock.c:23: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_getPId': basis/Posix/IO/FLock.c:27: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_setType': basis/Posix/IO/FLock.c:31: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_setWhence': basis/Posix/IO/FLock.c:35: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_setStart': basis/Posix/IO/FLock.c:39: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_setLen': basis/Posix/IO/FLock.c:43: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_setPId': basis/Posix/IO/FLock.c:47: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_fcntl': basis/Posix/IO/FLock.c:7: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/close-gdb.o basis/Posix/IO/close.c basis/Posix/IO/close.c: In function 'Posix_IO_close': basis/Posix/IO/close.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/dup-gdb.o basis/Posix/IO/dup.c basis/Posix/IO/dup.c: In function 'Posix_IO_dup': basis/Posix/IO/dup.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/dup2-gdb.o basis/Posix/IO/dup2.c basis/Posix/IO/dup2.c: In function 'Posix_IO_dup2': basis/Posix/IO/dup2.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/fcntl-consts-gdb.o basis/Posix/IO/fcntl-consts.c basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/fcntl2-gdb.o basis/Posix/IO/fcntl2.c basis/Posix/IO/fcntl2.c: In function 'Posix_IO_fcntl2': basis/Posix/IO/fcntl2.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/fcntl3-gdb.o basis/Posix/IO/fcntl3.c basis/Posix/IO/fcntl3.c: In function 'Posix_IO_fcntl3': basis/Posix/IO/fcntl3.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/fsync-gdb.o basis/Posix/IO/fsync.c basis/Posix/IO/fsync.c: In function 'Posix_IO_fsync': basis/Posix/IO/fsync.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/lseek-consts-gdb.o basis/Posix/IO/lseek-consts.c basis/Posix/IO/lseek-consts.c:5: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/lseek-consts.c:5: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/lseek-consts.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/lseek-gdb.o basis/Posix/IO/lseek.c basis/Posix/IO/lseek.c: In function 'Posix_IO_lseek': basis/Posix/IO/lseek.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/pipe-gdb.o basis/Posix/IO/pipe.c basis/Posix/IO/pipe.c: In function 'Posix_IO_pipe': basis/Posix/IO/pipe.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/read-gdb.o basis/Posix/IO/read.c basis/Posix/IO/read.c: In function 'Posix_IO_readWord8': basis/Posix/IO/read.c:18: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/read.c: In function 'Posix_IO_readChar8': basis/Posix/IO/read.c:13: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/write-gdb.o basis/Posix/IO/write.c basis/Posix/IO/write.c: In function 'Posix_IO_writeWord8Vec': basis/Posix/IO/write.c:28: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/write.c: In function 'Posix_IO_writeWord8Arr': basis/Posix/IO/write.c:23: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/write.c: In function 'Posix_IO_writeChar8Vec': basis/Posix/IO/write.c:18: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/write.c: In function 'Posix_IO_writeChar8Arr': basis/Posix/IO/write.c:13: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/ProcEnv-gdb.o basis/Posix/ProcEnv/ProcEnv.c basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_setuid': basis/Posix/ProcEnv/ProcEnv.c:50: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_setsid': basis/Posix/ProcEnv/ProcEnv.c:46: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_setpgid': basis/Posix/ProcEnv/ProcEnv.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_setgid': basis/Posix/ProcEnv/ProcEnv.c:38: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_getuid': basis/Posix/ProcEnv/ProcEnv.c:34: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_getpgrp': basis/Posix/ProcEnv/ProcEnv.c:30: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_getppid': basis/Posix/ProcEnv/ProcEnv.c:26: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_getpid': basis/Posix/ProcEnv/ProcEnv.c:22: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_getgid': basis/Posix/ProcEnv/ProcEnv.c:18: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_geteuid': basis/Posix/ProcEnv/ProcEnv.c:14: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_getegid': basis/Posix/ProcEnv/ProcEnv.c:10: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_ctermid': basis/Posix/ProcEnv/ProcEnv.c:6: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/Times-gdb.o basis/Posix/ProcEnv/Times.c basis/Posix/ProcEnv/Times.c: In function 'Posix_ProcEnv_Times_getUTime': basis/Posix/ProcEnv/Times.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Times.c: In function 'Posix_ProcEnv_Times_getSTime': basis/Posix/ProcEnv/Times.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Times.c: In function 'Posix_ProcEnv_Times_getCUTime': basis/Posix/ProcEnv/Times.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Times.c: In function 'Posix_ProcEnv_Times_getCSTime': basis/Posix/ProcEnv/Times.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Times.c: In function 'Posix_ProcEnv_times': basis/Posix/ProcEnv/Times.c:23: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/Uname-gdb.o basis/Posix/ProcEnv/Uname.c basis/Posix/ProcEnv/Uname.c: In function 'Posix_ProcEnv_Uname_getSysName': basis/Posix/ProcEnv/Uname.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Uname.c: In function 'Posix_ProcEnv_Uname_getNodeName': basis/Posix/ProcEnv/Uname.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Uname.c: In function 'Posix_ProcEnv_Uname_getRelease': basis/Posix/ProcEnv/Uname.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Uname.c: In function 'Posix_ProcEnv_Uname_getVersion': basis/Posix/ProcEnv/Uname.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Uname.c: In function 'Posix_ProcEnv_Uname_getMachine': basis/Posix/ProcEnv/Uname.c:23: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Uname.c: In function 'Posix_ProcEnv_uname': basis/Posix/ProcEnv/Uname.c:27: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/environ-gdb.o basis/Posix/ProcEnv/environ.c basis/Posix/ProcEnv/environ.c:4: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/getenv-gdb.o basis/Posix/ProcEnv/getenv.c basis/Posix/ProcEnv/getenv.c: In function 'Posix_ProcEnv_getenv': basis/Posix/ProcEnv/getenv.c:6: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/getgroups-gdb.o basis/Posix/ProcEnv/getgroups.c basis/Posix/ProcEnv/getgroups.c: In function 'Posix_ProcEnv_getgroups': basis/Posix/ProcEnv/getgroups.c:9: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/getgroups.c: In function 'Posix_ProcEnv_getgroupsN': basis/Posix/ProcEnv/getgroups.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/getlogin-gdb.o basis/Posix/ProcEnv/getlogin.c basis/Posix/ProcEnv/getlogin.c: In function 'Posix_ProcEnv_getlogin': basis/Posix/ProcEnv/getlogin.c:6: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/isatty-gdb.o basis/Posix/ProcEnv/isatty.c basis/Posix/ProcEnv/isatty.c: In function 'Posix_ProcEnv_isatty': basis/Posix/ProcEnv/isatty.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/setenv-gdb.o basis/Posix/ProcEnv/setenv.c basis/Posix/ProcEnv/setenv.c: In function 'Posix_ProcEnv_setenv': basis/Posix/ProcEnv/setenv.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/setgroups-gdb.o basis/Posix/ProcEnv/setgroups.c basis/Posix/ProcEnv/setgroups.c: In function 'Posix_ProcEnv_setgroups': basis/Posix/ProcEnv/setgroups.c:4: warning: passing argument 2 of 'setgroups' discards qualifiers from pointer target type basis/Posix/ProcEnv/setgroups.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/sysconf-consts-gdb.o basis/Posix/ProcEnv/sysconf-consts.c basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/sysconf-gdb.o basis/Posix/ProcEnv/sysconf.c basis/Posix/ProcEnv/sysconf.c: In function 'Posix_ProcEnv_sysconf': basis/Posix/ProcEnv/sysconf.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/ttyname-gdb.o basis/Posix/ProcEnv/ttyname.c basis/Posix/ProcEnv/ttyname.c: In function 'Posix_ProcEnv_ttyname': basis/Posix/ProcEnv/ttyname.c:6: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/alarm-gdb.o basis/Posix/Process/alarm.c basis/Posix/Process/alarm.c: In function 'Posix_Process_alarm': basis/Posix/Process/alarm.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/exece-gdb.o basis/Posix/Process/exece.c basis/Posix/Process/exece.c: In function 'Posix_Process_exece': basis/Posix/Process/exece.c:31: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/execp-gdb.o basis/Posix/Process/execp.c basis/Posix/Process/execp.c: In function 'Posix_Process_execp': basis/Posix/Process/execp.c:21: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/exit-gdb.o basis/Posix/Process/exit.c basis/Posix/Process/exit.c: In function 'Posix_Process_exit': basis/Posix/Process/exit.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/exitStatus-gdb.o basis/Posix/Process/exitStatus.c basis/Posix/Process/exitStatus.c: In function 'Posix_Process_exitStatus': basis/Posix/Process/exitStatus.c:8: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/fork-gdb.o basis/Posix/Process/fork.c basis/Posix/Process/fork.c: In function 'Posix_Process_fork': basis/Posix/Process/fork.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/ifExited-gdb.o basis/Posix/Process/ifExited.c basis/Posix/Process/ifExited.c: In function 'Posix_Process_ifExited': basis/Posix/Process/ifExited.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/ifSignaled-gdb.o basis/Posix/Process/ifSignaled.c basis/Posix/Process/ifSignaled.c: In function 'Posix_Process_ifSignaled': basis/Posix/Process/ifSignaled.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/ifStopped-gdb.o basis/Posix/Process/ifStopped.c basis/Posix/Process/ifStopped.c: In function 'Posix_Process_ifStopped': basis/Posix/Process/ifStopped.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/kill-gdb.o basis/Posix/Process/kill.c basis/Posix/Process/kill.c: In function 'Posix_Process_kill': basis/Posix/Process/kill.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/nanosleep-gdb.o basis/Posix/Process/nanosleep.c basis/Posix/Process/nanosleep.c: In function 'Posix_Process_nanosleep': basis/Posix/Process/nanosleep.c:16: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/pause-gdb.o basis/Posix/Process/pause.c basis/Posix/Process/pause.c: In function 'Posix_Process_pause': basis/Posix/Process/pause.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/sleep-gdb.o basis/Posix/Process/sleep.c basis/Posix/Process/sleep.c: In function 'Posix_Process_sleep': basis/Posix/Process/sleep.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/stopSig-gdb.o basis/Posix/Process/stopSig.c basis/Posix/Process/stopSig.c: In function 'Posix_Process_stopSig': basis/Posix/Process/stopSig.c:8: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/system-gdb.o basis/Posix/Process/system.c basis/Posix/Process/system.c: In function 'Posix_Process_system': basis/Posix/Process/system.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/termSig-gdb.o basis/Posix/Process/termSig.c basis/Posix/Process/termSig.c: In function 'Posix_Process_termSig': basis/Posix/Process/termSig.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/waitpid-consts-gdb.o basis/Posix/Process/waitpid-consts.c basis/Posix/Process/waitpid-consts.c:5: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Process/waitpid-consts.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/waitpid-gdb.o basis/Posix/Process/waitpid.c basis/Posix/Process/waitpid.c: In function 'Posix_Process_waitpid': basis/Posix/Process/waitpid.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Signal-consts-gdb.o basis/Posix/Signal-consts.c basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Signal-gdb.o basis/Posix/Signal.c basis/Posix/Signal.c: In function 'Posix_Signal_sigsuspend': basis/Posix/Signal.c:119: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_sigprocmask': basis/Posix/Signal.c:112: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_sigismember': basis/Posix/Signal.c:108: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_sigfillset': basis/Posix/Signal.c:104: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_sigemptyset': basis/Posix/Signal.c:100: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_sigdelset': basis/Posix/Signal.c:96: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_sigaddset': basis/Posix/Signal.c:92: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_isPending': basis/Posix/Signal.c:77: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_resetPending': basis/Posix/Signal.c:86: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_isPendingGC': basis/Posix/Signal.c:81: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_handleGC': basis/Posix/Signal.c:73: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_handlee': basis/Posix/Signal.c:69: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_isIgnore': basis/Posix/Signal.c:55: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_ignore': basis/Posix/Signal.c:45: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_isDefault': basis/Posix/Signal.c:35: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_default': basis/Posix/Signal.c:25: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/SysDB/Group-gdb.o basis/Posix/SysDB/Group.c basis/Posix/SysDB/Group.c: In function 'Posix_SysDB_Group_getName': basis/Posix/SysDB/Group.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Group.c: In function 'Posix_SysDB_Group_getGId': basis/Posix/SysDB/Group.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Group.c: In function 'Posix_SysDB_Group_getMem': basis/Posix/SysDB/Group.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Group.c: In function 'Posix_SysDB_getgrnam': basis/Posix/SysDB/Group.c:23: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Group.c: In function 'Posix_SysDB_getgrgid': basis/Posix/SysDB/Group.c:19: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/SysDB/Passwd-gdb.o basis/Posix/SysDB/Passwd.c basis/Posix/SysDB/Passwd.c: In function 'Posix_SysDB_Passwd_getName': basis/Posix/SysDB/Passwd.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Passwd.c: In function 'Posix_SysDB_Passwd_getUId': basis/Posix/SysDB/Passwd.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Passwd.c: In function 'Posix_SysDB_Passwd_getGId': basis/Posix/SysDB/Passwd.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Passwd.c: In function 'Posix_SysDB_Passwd_getDir': basis/Posix/SysDB/Passwd.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Passwd.c: In function 'Posix_SysDB_Passwd_getShell': basis/Posix/SysDB/Passwd.c:23: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Passwd.c: In function 'Posix_SysDB_getpwuid': basis/Posix/SysDB/Passwd.c:31: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Passwd.c: In function 'Posix_SysDB_getpwnam': basis/Posix/SysDB/Passwd.c:27: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/TTY-consts-gdb.o basis/Posix/TTY-consts.c basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/TTY-gdb.o basis/Posix/TTY.c basis/Posix/TTY.c: In function 'Posix_TTY_Termios_getIFlag': basis/Posix/TTY.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_getOFlag': basis/Posix/TTY.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_getCFlag': basis/Posix/TTY.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_getLFlag': basis/Posix/TTY.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_getCC': basis/Posix/TTY.c:24: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_setIFlag': basis/Posix/TTY.c:36: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_setOFlag': basis/Posix/TTY.c:40: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_setCFlag': basis/Posix/TTY.c:44: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_setLFlag': basis/Posix/TTY.c:48: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_setCC': basis/Posix/TTY.c:53: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_setpgrp': basis/Posix/TTY.c:93: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_setattr': basis/Posix/TTY.c:89: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_sendbreak': basis/Posix/TTY.c:85: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_getpgrp': basis/Posix/TTY.c:81: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_getattr': basis/Posix/TTY.c:77: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_flush': basis/Posix/TTY.c:73: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_flow': basis/Posix/TTY.c:69: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_drain': basis/Posix/TTY.c:65: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_cfSetISpeed': basis/Posix/TTY.c:61: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_cfSetOSpeed': basis/Posix/TTY.c:57: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_cfGetISpeed': basis/Posix/TTY.c:32: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_cfGetOSpeed': basis/Posix/TTY.c:28: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Real/IEEEReal-consts-gdb.o basis/Real/IEEEReal-consts.c basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Real/IEEEReal-gdb.o basis/Real/IEEEReal.c basis/Real/IEEEReal.c: In function 'IEEEReal_setRoundingMode': basis/Real/IEEEReal.c:81: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal.c: In function 'IEEEReal_getRoundingMode': basis/Real/IEEEReal.c:76: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Real/Math-gdb.o basis/Real/Math.c basis/Real/Math-fns.h: In function 'Real64_abs': basis/Real/Math-fns.h:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_abs': basis/Real/Math-fns.h:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_modf': basis/Real/Math-fns.h:120: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_modf': basis/Real/Math-fns.h:120: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_ldexp': basis/Real/Math-fns.h:83: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_ldexp': basis/Real/Math-fns.h:83: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_frexp': basis/Real/Math-fns.h:69: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_frexp': basis/Real/Math-fns.h:69: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_tanh': basis/Real/Math-fns.h:55: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_tanh': basis/Real/Math-fns.h:55: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_tan': basis/Real/Math-fns.h:54: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_tan': basis/Real/Math-fns.h:54: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_sqrt': basis/Real/Math-fns.h:53: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_sqrt': basis/Real/Math-fns.h:53: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_sinh': basis/Real/Math-fns.h:52: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_sinh': basis/Real/Math-fns.h:52: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_sin': basis/Real/Math-fns.h:51: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_sin': basis/Real/Math-fns.h:51: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_log10': basis/Real/Math-fns.h:50: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_log10': basis/Real/Math-fns.h:50: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_ln': basis/Real/Math-fns.h:49: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_ln': basis/Real/Math-fns.h:49: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_exp': basis/Real/Math-fns.h:48: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_exp': basis/Real/Math-fns.h:48: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_cosh': basis/Real/Math-fns.h:47: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_cosh': basis/Real/Math-fns.h:47: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_cos': basis/Real/Math-fns.h:46: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_cos': basis/Real/Math-fns.h:46: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_atan': basis/Real/Math-fns.h:45: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_atan': basis/Real/Math-fns.h:45: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_asin': basis/Real/Math-fns.h:44: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_asin': basis/Real/Math-fns.h:44: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_acos': basis/Real/Math-fns.h:43: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_acos': basis/Real/Math-fns.h:43: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_pow': basis/Real/Math-fns.h:29: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_pow': basis/Real/Math-fns.h:29: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_atan2': basis/Real/Math-fns.h:28: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_atan2': basis/Real/Math-fns.h:28: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_round': basis/Real/Math-fns.h:14: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_round': basis/Real/Math-fns.h:14: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Real/Real-consts-gdb.o basis/Real/Real-consts.c basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wno-float-equal -c -o basis/Real/Real-gdb.o basis/Real/Real.c basis/Real/Real-ops.h: In function 'Real32_add': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_div': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_mul': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_sub': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_equal': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_le': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_lt': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_muladd': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_mulsub': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_neg': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_fetch': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_store': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_move': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_add': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_div': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_mul': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_sub': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_equal': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_le': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_lt': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_muladd': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_mulsub': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_neg': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_fetch': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_store': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_move': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Real/class-gdb.o basis/Real/class.c basis/Real/class.c: In function 'Real64_class': basis/Real/class.c:90: warning: visibility attribute not supported in this configuration; ignored basis/Real/class.c: In function 'Real32_class': basis/Real/class.c:75: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Real/gdtoa-gdb.o basis/Real/gdtoa.c In file included from basis/Real/gdtoa.c:2: ./gdtoa/gdtoa.h:116: warning: redundant redeclaration of 'strtof' /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.2.4/include/stdlib.h:140: warning: previous declaration of 'strtof' was here ./gdtoa/gdtoa.h:117: warning: redundant redeclaration of 'strtod' /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.2.4/include/stdlib.h:126: warning: previous declaration of 'strtod' was here basis/Real/gdtoa.c: In function 'Real32_gdtoa': basis/Real/gdtoa.c:28: warning: implicit declaration of function 'gdtoa__gdtoa' basis/Real/gdtoa.c:28: warning: nested extern declaration of 'gdtoa__gdtoa' basis/Real/gdtoa.c:28: warning: assignment makes pointer from integer without a cast basis/Real/gdtoa.c: In function 'Real64_gdtoa': basis/Real/gdtoa.c:63: warning: assignment makes pointer from integer without a cast basis/Real/gdtoa.c: In function 'Real32_gdtoa': basis/Real/gdtoa.c:33: warning: visibility attribute not supported in this configuration; ignored basis/Real/gdtoa.c: In function 'Real64_gdtoa': basis/Real/gdtoa.c:68: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Real/signBit-gdb.o basis/Real/signBit.c basis/Real/signBit.c: In function 'Real64_signBit': basis/Real/signBit.c:83: warning: visibility attribute not supported in this configuration; ignored basis/Real/signBit.c: In function 'Real32_signBit': basis/Real/signBit.c:53: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Real/strto-gdb.o basis/Real/strto.c In file included from basis/Real/strto.c:2: ./gdtoa/gdtoa.h:116: warning: redundant redeclaration of 'strtof' /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.2.4/include/stdlib.h:140: warning: previous declaration of 'strtof' was here ./gdtoa/gdtoa.h:117: warning: redundant redeclaration of 'strtod' /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.2.4/include/stdlib.h:126: warning: previous declaration of 'strtod' was here basis/Real/strto.c: In function 'Real32_strto': basis/Real/strto.c:9: warning: implicit declaration of function 'gdtoa__strtorf' basis/Real/strto.c:9: warning: nested extern declaration of 'gdtoa__strtorf' basis/Real/strto.c: In function 'Real64_strto': basis/Real/strto.c:19: warning: implicit declaration of function 'gdtoa__strtord' basis/Real/strto.c:19: warning: nested extern declaration of 'gdtoa__strtord' basis/Real/strto.c:22: warning: visibility attribute not supported in this configuration; ignored basis/Real/strto.c: In function 'Real32_strto': basis/Real/strto.c:12: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Stdio-gdb.o basis/Stdio.c basis/Stdio.c: In function 'Stdio_printStdout': basis/Stdio.c:17: warning: visibility attribute not supported in this configuration; ignored basis/Stdio.c: In function 'Stdio_printStderr': basis/Stdio.c:9: warning: visibility attribute not supported in this configuration; ignored basis/Stdio.c: In function 'Stdio_print': basis/Stdio.c:21: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/System/CommandLine-gdb.o basis/System/CommandLine.c basis/System/CommandLine.c:6: warning: visibility attribute not supported in this configuration; ignored basis/System/CommandLine.c:6: warning: visibility attribute not supported in this configuration; ignored basis/System/CommandLine.c:6: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wno-format-nonliteral -c -o basis/System/Date-gdb.o basis/System/Date.c basis/System/Date.c: In function 'Date_Tm_getHour': basis/System/Date.c:6: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getIsDst': basis/System/Date.c:7: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getMDay': basis/System/Date.c:8: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getMin': basis/System/Date.c:9: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getMon': basis/System/Date.c:10: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getSec': basis/System/Date.c:11: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getWDay': basis/System/Date.c:12: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getYDay': basis/System/Date.c:13: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getYear': basis/System/Date.c:14: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setHour': basis/System/Date.c:16: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setIsDst': basis/System/Date.c:17: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setMDay': basis/System/Date.c:18: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setMin': basis/System/Date.c:19: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setMon': basis/System/Date.c:20: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setSec': basis/System/Date.c:21: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setWDay': basis/System/Date.c:22: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setYDay': basis/System/Date.c:23: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setYear': basis/System/Date.c:24: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_strfTime': basis/System/Date.c:53: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_mkTime': basis/System/Date.c:49: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_localTime': basis/System/Date.c:45: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_gmTime': basis/System/Date.c:30: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_localOffset': basis/System/Date.c:39: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/System/OS/IO/poll-consts-gdb.o basis/System/OS/IO/poll-consts.c basis/System/OS/IO/poll-consts.c:5: warning: visibility attribute not supported in this configuration; ignored basis/System/OS/IO/poll-consts.c:5: warning: visibility attribute not supported in this configuration; ignored basis/System/OS/IO/poll-consts.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/System/OS/IO/poll-gdb.o basis/System/OS/IO/poll.c basis/System/OS/IO/poll.c: In function 'OS_IO_poll': basis/System/OS/IO/poll.c:22: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/System/Time-gdb.o basis/System/Time.c basis/System/Time.c: In function 'Time_getTimeOfDay': basis/System/Time.c:12: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Word/Word-gdb.o basis/Word/Word.c basis/Word/Word-ops.h: In function 'Word8_add': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_andb': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_equal': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_ge': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_ge': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_gt': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_gt': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_le': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_le': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_lshift': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_lt': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_lt': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_mul': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_mul': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_neg': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_notb': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_quot': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_rem': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_quot': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_rem': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_orb': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_rol': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_ror': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_rshift': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_rshift': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_sub': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_xorb': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_add': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_andb': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_equal': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_ge': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_ge': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_gt': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_gt': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_le': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_le': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_lshift': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_lt': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_lt': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_mul': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_mul': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_neg': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_notb': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_quot': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_rem': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_quot': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_rem': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_orb': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_rol': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_ror': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_rshift': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_rshift': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_sub': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_xorb': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_add': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_andb': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_equal': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_ge': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_ge': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_gt': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_gt': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_le': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_le': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_lshift': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_lt': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_lt': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_mul': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_mul': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_neg': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_notb': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_quot': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_rem': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_quot': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_rem': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_orb': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_rol': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_ror': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_rshift': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_rshift': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_sub': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_xorb': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_add': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_andb': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_equal': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_ge': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_ge': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_gt': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_gt': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_le': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_le': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_lshift': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_lt': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_lt': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_mul': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_mul': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_neg': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_notb': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_quot': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_rem': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_quot': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_rem': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_orb': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_rol': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_ror': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_rshift': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_rshift': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_sub': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_xorb': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_fetch': basis/Word/Word-ops.h:119: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_store': basis/Word/Word-ops.h:119: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_move': basis/Word/Word-ops.h:119: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS8_addCheckOverflows': basis/Word/Word-check.h:157: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU8_addCheckOverflows': basis/Word/Word-check.h:157: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS8_mulCheckOverflows': basis/Word/Word-check.h:157: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU8_mulCheckOverflows': basis/Word/Word-check.h:157: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS8_negCheckOverflows': basis/Word/Word-check.h:157: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS8_subCheckOverflows': basis/Word/Word-check.h:157: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS16_addCheckOverflows': basis/Word/Word-check.h:158: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU16_addCheckOverflows': basis/Word/Word-check.h:158: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS16_mulCheckOverflows': basis/Word/Word-check.h:158: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU16_mulCheckOverflows': basis/Word/Word-check.h:158: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS16_negCheckOverflows': basis/Word/Word-check.h:158: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS16_subCheckOverflows': basis/Word/Word-check.h:158: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS32_addCheckOverflows': basis/Word/Word-check.h:159: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU32_addCheckOverflows': basis/Word/Word-check.h:159: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS32_mulCheckOverflows': basis/Word/Word-check.h:159: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU32_mulCheckOverflows': basis/Word/Word-check.h:159: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS32_negCheckOverflows': basis/Word/Word-check.h:159: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS32_subCheckOverflows': basis/Word/Word-check.h:159: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS64_addCheckOverflows': basis/Word/Word-check.h:160: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU64_addCheckOverflows': basis/Word/Word-check.h:160: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS64_mulCheckOverflows': basis/Word/Word-check.h:160: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU64_mulCheckOverflows': basis/Word/Word-check.h:160: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS64_negCheckOverflows': basis/Word/Word-check.h:160: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS64_subCheckOverflows': basis/Word/Word-check.h:160: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/coerce-gdb.o basis/coerce.c basis/coerce.h: In function 'Real32_rndToWordS8': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToWordU8': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordS8': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordU8': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS8_extdToWord8': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU8_extdToWord8': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS8_extdToWord16': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU8_extdToWord16': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS8_extdToWord32': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU8_extdToWord32': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS8_extdToWord64': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU8_extdToWord64': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToWordS16': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToWordU16': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordS16': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordU16': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS16_extdToWord8': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU16_extdToWord8': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS16_extdToWord16': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU16_extdToWord16': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS16_extdToWord32': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU16_extdToWord32': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS16_extdToWord64': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU16_extdToWord64': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToWordS32': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToWordU32': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordS32': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordU32': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS32_extdToWord8': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU32_extdToWord8': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS32_extdToWord16': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU32_extdToWord16': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS32_extdToWord32': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU32_extdToWord32': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS32_extdToWord64': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU32_extdToWord64': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToWordS64': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToWordU64': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordS64': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordU64': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS64_extdToWord8': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU64_extdToWord8': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS64_extdToWord16': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU64_extdToWord16': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS64_extdToWord32': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU64_extdToWord32': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS64_extdToWord64': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU64_extdToWord64': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToReal32': basis/coerce.h:31: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToReal64': basis/coerce.h:32: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToReal32': basis/coerce.h:33: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToReal64': basis/coerce.h:34: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_castToWord32': basis/coerce.h:46: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Word32_castToReal32': basis/coerce.h:47: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_castToWord64': basis/coerce.h:48: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Word64_castToReal64': basis/coerce.h:49: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS8_rndToReal32': basis/coerce.c:21: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU8_rndToReal32': basis/coerce.c:21: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS8_rndToReal64': basis/coerce.c:21: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU8_rndToReal64': basis/coerce.c:21: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS16_rndToReal32': basis/coerce.c:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU16_rndToReal32': basis/coerce.c:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS16_rndToReal64': basis/coerce.c:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU16_rndToReal64': basis/coerce.c:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS32_rndToReal32': basis/coerce.c:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU32_rndToReal32': basis/coerce.c:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS32_rndToReal64': basis/coerce.c:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU32_rndToReal64': basis/coerce.c:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS64_rndToReal32': basis/coerce.c:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU64_rndToReal32': basis/coerce.c:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS64_rndToReal64': basis/coerce.c:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU64_rndToReal64': basis/coerce.c:24: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -DASSERT=1 -O1 -fno-inline -fkeep-inline-functions -g2 -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/cpointer-gdb.o basis/cpointer.c basis/cpointer.h: In function 'CPointer_add': basis/cpointer.h:20: warning: visibility attribute not supported in this configuration; ignored basis/cpointer.h: In function 'CPointer_diff': basis/cpointer.h:24: warning: visibility attribute not supported in this configuration; ignored basis/cpointer.h: In function 'CPointer_equal': basis/cpointer.h:28: warning: visibility attribute not supported in this configuration; ignored basis/cpointer.h: In function 'CPointer_fromWord': basis/cpointer.h:32: warning: visibility attribute not supported in this configuration; ignored basis/cpointer.h: In function 'CPointer_lt': basis/cpointer.h:36: warning: visibility attribute not supported in this configuration; ignored basis/cpointer.h: In function 'CPointer_sub': basis/cpointer.h:40: warning: visibility attribute not supported in this configuration; ignored basis/cpointer.h: In function 'CPointer_toWord': basis/cpointer.h:44: warning: visibility attribute not supported in this configuration; ignored ar -X 64 rc libmlton-gdb.a util-gdb.o gc-gdb.o platform-gdb.o platform/aix-gdb.o bytecode/interpret-gdb.o basis/MLton/Itimer/itimer-consts-gdb.o basis/MLton/Itimer/set-gdb.o basis/MLton/Process/spawne-gdb.o basis/MLton/Process/spawnp-gdb.o basis/MLton/Rlimit/rlimit-consts-gdb.o basis/MLton/Rlimit/rlimit-gdb.o basis/MLton/Rusage/rusage-gdb.o basis/MLton/Syslog/Syslog-consts-gdb.o basis/MLton/Syslog/Syslog-gdb.o basis/MLton/bug-gdb.o basis/Net/Net-gdb.o basis/Net/NetHostDB-consts-gdb.o basis/Net/NetHostDB-gdb.o basis/Net/NetProtDB-gdb.o basis/Net/NetServDB-gdb.o basis/Net/Socket/GenericSock-gdb.o basis/Net/Socket/INetSock-consts-gdb.o basis/Net/Socket/INetSock-gdb.o basis/Net/Socket/Socket-consts-gdb.o basis/Net/Socket/Socket-gdb.o basis/Net/Socket/UnixSock-gdb.o basis/Net/Socket/select-gdb.o basis/Posix/Error-consts-gdb.o basis/Posix/Error-gdb.o basis/Posix/FileSys/Dirstream-gdb.o basis/Posix/FileSys/FileSys-consts-gdb.o basis/Posix/FileSys/ST-gdb.o basis/Posix/FileSys/Stat-gdb.o basis/Posix/FileSys/Utimbuf-gdb.o basis/Posix/FileSys/access-gdb.o basis/Posix/FileSys/chdir-gdb.o basis/Posix/FileSys/chmod-gdb.o basis/Posix/FileSys/chown-gdb.o basis/Posix/FileSys/fchdir-gdb.o basis/Posix/FileSys/fchmod-gdb.o basis/Posix/FileSys/fchown-gdb.o basis/Posix/FileSys/fpathconf-gdb.o basis/Posix/FileSys/ftruncate-gdb.o basis/Posix/FileSys/getcwd-gdb.o basis/Posix/FileSys/link-gdb.o basis/Posix/FileSys/mkdir-gdb.o basis/Posix/FileSys/mkfifo-gdb.o basis/Posix/FileSys/open2-gdb.o basis/Posix/FileSys/open3-gdb.o basis/Posix/FileSys/pathconf-gdb.o basis/Posix/FileSys/readlink-gdb.o basis/Posix/FileSys/rename-gdb.o basis/Posix/FileSys/rmdir-gdb.o basis/Posix/FileSys/symlink-gdb.o basis/Posix/FileSys/truncate-gdb.o basis/Posix/FileSys/umask-gdb.o basis/Posix/FileSys/unlink-gdb.o basis/Posix/IO/FLock-consts-gdb.o basis/Posix/IO/FLock-gdb.o basis/Posix/IO/close-gdb.o basis/Posix/IO/dup-gdb.o basis/Posix/IO/dup2-gdb.o basis/Posix/IO/fcntl-consts-gdb.o basis/Posix/IO/fcntl2-gdb.o basis/Posix/IO/fcntl3-gdb.o basis/Posix/IO/fsync-gdb.o basis/Posix/IO/lseek-consts-gdb.o basis/Posix/IO/lseek-gdb.o basis/Posix/IO/pipe-gdb.o basis/Posix/IO/read-gdb.o basis/Posix/IO/write-gdb.o basis/Posix/ProcEnv/ProcEnv-gdb.o basis/Posix/ProcEnv/Times-gdb.o basis/Posix/ProcEnv/Uname-gdb.o basis/Posix/ProcEnv/environ-gdb.o basis/Posix/ProcEnv/getenv-gdb.o basis/Posix/ProcEnv/getgroups-gdb.o basis/Posix/ProcEnv/getlogin-gdb.o basis/Posix/ProcEnv/isatty-gdb.o basis/Posix/ProcEnv/setenv-gdb.o basis/Posix/ProcEnv/setgroups-gdb.o basis/Posix/ProcEnv/sysconf-consts-gdb.o basis/Posix/ProcEnv/sysconf-gdb.o basis/Posix/ProcEnv/ttyname-gdb.o basis/Posix/Process/alarm-gdb.o basis/Posix/Process/exece-gdb.o basis/Posix/Process/execp-gdb.o basis/Posix/Process/exit-gdb.o basis/Posix/Process/exitStatus-gdb.o basis/Posix/Process/fork-gdb.o basis/Posix/Process/ifExited-gdb.o basis/Posix/Process/ifSignaled-gdb.o basis/Posix/Process/ifStopped-gdb.o basis/Posix/Process/kill-gdb.o basis/Posix/Process/nanosleep-gdb.o basis/Posix/Process/pause-gdb.o basis/Posix/Process/sleep-gdb.o basis/Posix/Process/stopSig-gdb.o basis/Posix/Process/system-gdb.o basis/Posix/Process/termSig-gdb.o basis/Posix/Process/waitpid-consts-gdb.o basis/Posix/Process/waitpid-gdb.o basis/Posix/Signal-consts-gdb.o basis/Posix/Signal-gdb.o basis/Posix/SysDB/Group-gdb.o basis/Posix/SysDB/Passwd-gdb.o basis/Posix/TTY-consts-gdb.o basis/Posix/TTY-gdb.o basis/Real/IEEEReal-consts-gdb.o basis/Real/IEEEReal-gdb.o basis/Real/Math-gdb.o basis/Real/Real-consts-gdb.o basis/Real/Real-gdb.o basis/Real/class-gdb.o basis/Real/gdtoa-gdb.o basis/Real/signBit-gdb.o basis/Real/strto-gdb.o basis/Stdio-gdb.o basis/System/CommandLine-gdb.o basis/System/Date-gdb.o basis/System/OS/IO/poll-consts-gdb.o basis/System/OS/IO/poll-gdb.o basis/System/Time-gdb.o basis/Word/Word-gdb.o basis/coerce-gdb.o basis/cpointer-gdb.o ranlib libmlton-gdb.a gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o util-pic.o util.c util/to-string.c: In function 'boolToString': util/to-string.c:12: warning: visibility attribute not supported in this configuration; ignored util/to-string.c: In function 'uintmaxToCommaString': util/to-string.c:104: warning: visibility attribute not supported in this configuration; ignored util/to-string.c: In function 'intmaxToCommaString': util/to-string.c:76: warning: visibility attribute not supported in this configuration; ignored util/die.c: In function 'diee': util/die.c:31: warning: visibility attribute not supported in this configuration; ignored util/die.c: In function 'die': util/die.c:19: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o gc-pic.o gc.c gc/array.c: In function 'GC_getArrayLength': gc/array.c:29: warning: visibility attribute not supported in this configuration; ignored gc/call-stack.c: In function 'GC_frameIndexSourceSeq': gc/call-stack.c:46: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getAmOriginal': gc/gc_state.c:109: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setAmOriginal': gc/gc_state.c:112: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setControlsMessages': gc/gc_state.c:116: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setControlsSummary': gc/gc_state.c:120: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setControlsRusageMeasureGC': gc/gc_state.c:124: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getCumulativeStatisticsBytesAllocated': gc/gc_state.c:128: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getCumulativeStatisticsNumCopyingGCs': gc/gc_state.c:132: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getCumulativeStatisticsNumMarkCompactGCs': gc/gc_state.c:136: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getCumulativeStatisticsNumMinorGCs': gc/gc_state.c:140: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getCumulativeStatisticsMaxBytesLive': gc/gc_state.c:144: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setHashConsDuringGC': gc/gc_state.c:148: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getLastMajorStatisticsBytesLive': gc/gc_state.c:152: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getRusageGCAddr': gc/gc_state.c:194: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getSignalsHandledAddr': gc/gc_state.c:198: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getSignalsPendingAddr': gc/gc_state.c:202: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setGCSignalHandled': gc/gc_state.c:206: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getGCSignalPending': gc/gc_state.c:210: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setGCSignalPending': gc/gc_state.c:214: warning: visibility attribute not supported in this configuration; ignored gc/handler.c: In function 'GC_startSignalHandler': gc/handler.c:36: warning: visibility attribute not supported in this configuration; ignored gc/handler.c: In function 'GC_finishSignalHandler': gc/handler.c:43: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'initIntInf': gc/int-inf.c:423: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_getProfileCurrent': gc/profiling.c:506: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_setProfileCurrent': gc/profiling.c:509: warning: visibility attribute not supported in this configuration; ignored gc/sources.c: In function 'GC_sourceName': gc/sources.c:24: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileEnter': gc/profiling.c:108: warning: visibility attribute not supported in this configuration; ignored gc/world.c: In function 'GC_getSaveWorldStatus': gc/world.c:115: warning: visibility attribute not supported in this configuration; ignored gc/call-stack.c: In function 'GC_numStackFrames': gc/call-stack.c:21: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'profileFree': gc/profiling.c:247: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileFree': gc/profiling.c:251: warning: visibility attribute not supported in this configuration; ignored gc/virtual-memory.c: In function 'GC_mmapAnon_safe': gc/virtual-memory.c:19: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileDone': gc/profiling.c:501: warning: visibility attribute not supported in this configuration; ignored gc/handler.c: In function 'GC_handler': gc/handler.c:69: warning: visibility attribute not supported in this configuration; ignored gc/weak.c: In function 'GC_weakGet': gc/weak.c:54: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getSavedThread': gc/gc_state.c:177: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getCurrentThread': gc/gc_state.c:168: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_getCallFromCHandlerThread': gc/gc_state.c:158: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setSignalHandlerThread': gc/gc_state.c:190: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setSavedThread': gc/gc_state.c:185: warning: visibility attribute not supported in this configuration; ignored gc/gc_state.c: In function 'GC_setCallFromCHandlerThread': gc/gc_state.c:163: warning: visibility attribute not supported in this configuration; ignored gc/weak.c: In function 'GC_weakCanGet': gc/weak.c:42: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileLeave': gc/profiling.c:168: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileInc': gc/profiling.c:208: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileAllocInc': gc/profiling.c:216: warning: visibility attribute not supported in this configuration; ignored gc/weak.c: In function 'GC_weakNew': gc/weak.c:69: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'profileMalloc': gc/profiling.c:234: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileMalloc': gc/profiling.c:238: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_compare': gc/int-inf.c:327: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_equal': gc/int-inf.c:339: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_toString': gc/int-inf.c:375: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_lshift': gc/int-inf.c:307: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_arshift': gc/int-inf.c:300: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_notb': gc/int-inf.c:279: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_neg': gc/int-inf.c:272: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_andb': gc/int-inf.c:204: warning: visibility attribute not supported in this configuration; ignored gc/call-stack.c: In function 'GC_callStack': gc/call-stack.c:36: warning: visibility attribute not supported in this configuration; ignored gc/size.c: In function 'GC_size': gc/size.c:22: warning: visibility attribute not supported in this configuration; ignored gc/share.c: In function 'GC_share': gc/share.c:29: warning: visibility attribute not supported in this configuration; ignored gc/done.c: In function 'GC_done': gc/done.c:96: warning: visibility attribute not supported in this configuration; ignored gc/pack.c: In function 'GC_unpack': gc/pack.c:64: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'profileWrite': gc/profiling.c:315: warning: visibility attribute not supported in this configuration; ignored gc/profiling.c: In function 'GC_profileWrite': gc/profiling.c:319: warning: visibility attribute not supported in this configuration; ignored gc/world.c: In function 'GC_saveWorld': gc/world.c:111: warning: visibility attribute not supported in this configuration; ignored gc/switch-thread.c: In function 'GC_switchToThread': gc/switch-thread.c:68: warning: visibility attribute not supported in this configuration; ignored gc/pack.c: In function 'GC_pack': gc/pack.c:37: warning: visibility attribute not supported in this configuration; ignored gc/init.c: In function 'GC_init': gc/init.c:395: warning: visibility attribute not supported in this configuration; ignored gc/copy-thread.c: In function 'GC_copyCurrentThread': gc/copy-thread.c:54: warning: visibility attribute not supported in this configuration; ignored gc/copy-thread.c: In function 'GC_copyThread': gc/copy-thread.c:75: warning: visibility attribute not supported in this configuration; ignored gc/garbage-collection.c: In function 'GC_collect': gc/garbage-collection.c:234: warning: visibility attribute not supported in this configuration; ignored gc/array-allocate.c: In function 'GC_arrayAllocate': gc/array-allocate.c:119: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_add': gc/int-inf.c:197: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_xorb': gc/int-inf.c:253: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_sub': gc/int-inf.c:246: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_rem': gc/int-inf.c:239: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_orb': gc/int-inf.c:232: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_quot': gc/int-inf.c:225: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_mul': gc/int-inf.c:218: warning: visibility attribute not supported in this configuration; ignored gc/int-inf.c: In function 'IntInf_gcd': gc/int-inf.c:211: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o platform-pic.o platform.c platform.c: In function 'GC_setCygwinUseMmap': platform.c:14: warning: visibility attribute not supported in this configuration; ignored platform.c: In function 'MLton_allocTooLarge': platform.c:37: warning: visibility attribute not supported in this configuration; ignored platform.c: In function 'MLton_halt': platform.c:31: warning: visibility attribute not supported in this configuration; ignored platform.c: In function 'MLton_init': platform.c:26: warning: visibility attribute not supported in this configuration; ignored platform.c: At top level: platform.c:37: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o platform/aix-pic.o platform/aix.c platform/aix.c: In function 'GC_displayMem': platform/aix.c:173: warning: pointer of type 'void *' used in arithmetic platform/aix.c:181: warning: format '%08llx' expects type 'long long unsigned int', but argument 2 has type 'prptr64_t' platform/aix.c:181: warning: format '%08llx' expects type 'long long unsigned int', but argument 3 has type 'prptr64_t' platform/nonwin.c: In function 'MLton_Process_cwait': platform/nonwin.c:23: warning: visibility attribute not supported in this configuration; ignored platform/nonwin.c: In function 'Posix_IO_settext': platform/nonwin.c:13: warning: visibility attribute not supported in this configuration; ignored platform/nonwin.c: In function 'Posix_IO_setbin': platform/nonwin.c:8: warning: visibility attribute not supported in this configuration; ignored platform/aix.c: In function 'GC_displayMem': platform/aix.c:183: warning: visibility attribute not supported in this configuration; ignored platform/aix.c: In function 'GC_physMem': platform/aix.c:75: warning: visibility attribute not supported in this configuration; ignored platform/aix.c: In function 'GC_pageSize': platform/aix.c:62: warning: visibility attribute not supported in this configuration; ignored platform/aix.c: In function 'fpclassify64': platform/aix.c:52: warning: visibility attribute not supported in this configuration; ignored platform/aix.c: In function 'fesetround': platform/aix.c:27: warning: visibility attribute not supported in this configuration; ignored platform/aix.c: In function 'fegetround': platform/aix.c:22: warning: visibility attribute not supported in this configuration; ignored platform/use-mmap.c: In function 'GC_mmapAnon': platform/use-mmap.c:9: warning: visibility attribute not supported in this configuration; ignored platform/use-mmap.c: In function 'GC_release': platform/use-mmap.c:5: warning: visibility attribute not supported in this configuration; ignored platform/recv.nonblock.c: In function 'MLton_recvfrom': platform/recv.nonblock.c:38: warning: visibility attribute not supported in this configuration; ignored platform/recv.nonblock.c: In function 'MLton_recv': platform/recv.nonblock.c:28: warning: visibility attribute not supported in this configuration; ignored platform/mmap-protect.c: In function 'GC_mmapAnon_safe_protect': platform/mmap-protect.c:16: warning: visibility attribute not supported in this configuration; ignored platform/mkdir2.c: In function 'mkdir2': platform/mkdir2.c:3: warning: visibility attribute not supported in this configuration; ignored platform/diskBack.unix.c: In function 'GC_diskBack_close': platform/diskBack.unix.c:48: warning: visibility attribute not supported in this configuration; ignored platform/diskBack.unix.c: In function 'GC_diskBack_read': platform/diskBack.unix.c:40: warning: visibility attribute not supported in this configuration; ignored platform/diskBack.unix.c: In function 'GC_diskBack_write': platform/diskBack.unix.c:59: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I../include -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wno-float-equal -c -o bytecode/interpret-pic.o bytecode/interpret.c bytecode/interpret.c: In function 'MLton_Bytecode_interpret': bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c: At top level: bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored bytecode/interpret.c:631: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/MLton/Itimer/itimer-consts-pic.o basis/MLton/Itimer/itimer-consts.c basis/MLton/Itimer/itimer-consts.c:5: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Itimer/itimer-consts.c:5: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Itimer/itimer-consts.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/MLton/Itimer/set-pic.o basis/MLton/Itimer/set.c basis/MLton/Itimer/set.c: In function 'MLton_Itimer_set': basis/MLton/Itimer/set.c:16: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/MLton/Process/spawne-pic.o basis/MLton/Process/spawne.c basis/MLton/Process/spawne.c: In function 'MLton_Process_spawne': basis/MLton/Process/spawne.c:42: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/MLton/Process/spawnp-pic.o basis/MLton/Process/spawnp.c basis/MLton/Process/spawnp.c: In function 'MLton_Process_spawnp': basis/MLton/Process/spawnp.c:31: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/MLton/Rlimit/rlimit-consts-pic.o basis/MLton/Rlimit/rlimit-consts.c basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit-consts.c:35: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/MLton/Rlimit/rlimit-pic.o basis/MLton/Rlimit/rlimit.c basis/MLton/Rlimit/rlimit.c: In function 'MLton_Rlimit_getHard': basis/MLton/Rlimit/rlimit.c:11: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit.c: In function 'MLton_Rlimit_getSoft': basis/MLton/Rlimit/rlimit.c:15: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit.c: In function 'MLton_Rlimit_set': basis/MLton/Rlimit/rlimit.c:21: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rlimit/rlimit.c: In function 'MLton_Rlimit_get': basis/MLton/Rlimit/rlimit.c:7: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/MLton/Rusage/rusage-pic.o basis/MLton/Rusage/rusage.c basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_self_utime_sec': basis/MLton/Rusage/rusage.c:11: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_self_utime_usec': basis/MLton/Rusage/rusage.c:15: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_self_stime_sec': basis/MLton/Rusage/rusage.c:19: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_self_stime_usec': basis/MLton/Rusage/rusage.c:23: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_children_utime_sec': basis/MLton/Rusage/rusage.c:27: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_children_utime_usec': basis/MLton/Rusage/rusage.c:31: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_children_stime_sec': basis/MLton/Rusage/rusage.c:35: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_children_stime_usec': basis/MLton/Rusage/rusage.c:39: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_gc_utime_sec': basis/MLton/Rusage/rusage.c:43: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_gc_utime_usec': basis/MLton/Rusage/rusage.c:47: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_gc_stime_sec': basis/MLton/Rusage/rusage.c:51: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_gc_stime_usec': basis/MLton/Rusage/rusage.c:55: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Rusage/rusage.c: In function 'MLton_Rusage_getrusage': basis/MLton/Rusage/rusage.c:61: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/MLton/Syslog/Syslog-consts-pic.o basis/MLton/Syslog/Syslog-consts.c basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog-consts.c:48: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/MLton/Syslog/Syslog-pic.o basis/MLton/Syslog/Syslog.c basis/MLton/Syslog/Syslog.c: In function 'MLton_Syslog_syslog': basis/MLton/Syslog/Syslog.c:17: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog.c: In function 'MLton_Syslog_openlog': basis/MLton/Syslog/Syslog.c:13: warning: visibility attribute not supported in this configuration; ignored basis/MLton/Syslog/Syslog.c: In function 'MLton_Syslog_closelog': basis/MLton/Syslog/Syslog.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/MLton/bug-pic.o basis/MLton/bug.c basis/MLton/bug.c: In function 'MLton_bug': basis/MLton/bug.c:12: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/Net-pic.o basis/Net/Net.c basis/Net/Net.c: In function 'Net_htonl': basis/Net/Net.c:12: warning: visibility attribute not supported in this configuration; ignored basis/Net/Net.c: In function 'Net_ntohl': basis/Net/Net.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Net/Net.c: In function 'Net_htons': basis/Net/Net.c:26: warning: visibility attribute not supported in this configuration; ignored basis/Net/Net.c: In function 'Net_ntohs': basis/Net/Net.c:33: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/NetHostDB-consts-pic.o basis/Net/NetHostDB-consts.c basis/Net/NetHostDB-consts.c:4: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB-consts.c:4: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/NetHostDB-pic.o basis/Net/NetHostDB.c basis/Net/NetHostDB.c: In function 'NetHostDB_getEntryName': basis/Net/NetHostDB.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getEntryAliasesNum': basis/Net/NetHostDB.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getEntryAliasesN': basis/Net/NetHostDB.c:17: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getEntryAddrType': basis/Net/NetHostDB.c:21: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getEntryLength': basis/Net/NetHostDB.c:25: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getEntryAddrsNum': basis/Net/NetHostDB.c:31: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getEntryAddrsN': basis/Net/NetHostDB.c:39: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getByName': basis/Net/NetHostDB.c:51: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getByAddress': basis/Net/NetHostDB.c:45: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetHostDB.c: In function 'NetHostDB_getHostName': basis/Net/NetHostDB.c:56: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/NetProtDB-pic.o basis/Net/NetProtDB.c basis/Net/NetProtDB.c: In function 'NetProtDB_getEntryName': basis/Net/NetProtDB.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetProtDB.c: In function 'NetProtDB_getEntryAliasesNum': basis/Net/NetProtDB.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetProtDB.c: In function 'NetProtDB_getEntryAliasesN': basis/Net/NetProtDB.c:17: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetProtDB.c: In function 'NetProtDB_getEntryProto': basis/Net/NetProtDB.c:21: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetProtDB.c: In function 'NetProtDB_getByNumber': basis/Net/NetProtDB.c:31: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetProtDB.c: In function 'NetProtDB_getByName': basis/Net/NetProtDB.c:26: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/NetServDB-pic.o basis/Net/NetServDB.c basis/Net/NetServDB.c: In function 'NetServDB_getEntryName': basis/Net/NetServDB.c:10: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getEntryAliasesNum': basis/Net/NetServDB.c:16: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getEntryAliasesN': basis/Net/NetServDB.c:20: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getEntryPort': basis/Net/NetServDB.c:24: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getEntryProto': basis/Net/NetServDB.c:28: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getByPort': basis/Net/NetServDB.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getByPortNull': basis/Net/NetServDB.c:46: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getByName': basis/Net/NetServDB.c:33: warning: visibility attribute not supported in this configuration; ignored basis/Net/NetServDB.c: In function 'NetServDB_getByNameNull': basis/Net/NetServDB.c:37: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/Socket/GenericSock-pic.o basis/Net/Socket/GenericSock.c basis/Net/Socket/GenericSock.c: In function 'Socket_GenericSock_socketPair': basis/Net/Socket/GenericSock.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/GenericSock.c: In function 'Socket_GenericSock_socket': basis/Net/Socket/GenericSock.c:7: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/Socket/INetSock-consts-pic.o basis/Net/Socket/INetSock-consts.c basis/Net/Socket/INetSock-consts.c:4: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/INetSock-consts.c:4: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/Socket/INetSock-pic.o basis/Net/Socket/INetSock.c basis/Net/Socket/INetSock.c: In function 'Socket_INetSock_toAddr': basis/Net/Socket/INetSock.c:12: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/INetSock.c: In function 'Socket_INetSock_fromAddr': basis/Net/Socket/INetSock.c:23: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/INetSock.c: In function 'Socket_INetSock_getPort': basis/Net/Socket/INetSock.c:27: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/INetSock.c: In function 'Socket_INetSock_getInAddr': basis/Net/Socket/INetSock.c:31: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/Socket/Socket-consts-pic.o basis/Net/Socket/Socket-consts.c basis/Net/Socket/Socket-consts.c:40: warning: overflow in implicit constant conversion basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket-consts.c:42: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/Socket/Socket-pic.o basis/Net/Socket/Socket.c basis/Net/Socket/Socket.c: In function 'Socket_familyOfAddr': basis/Net/Socket/Socket.c:28: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_sendArrTo': basis/Net/Socket/Socket.c:83: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_sendArr': basis/Net/Socket/Socket.c:62: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_close': basis/Net/Socket/Socket.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_bind': basis/Net/Socket/Socket.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_accept': basis/Net/Socket/Socket.c:6: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_Ctl_getSockName': basis/Net/Socket/Socket.c:130: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_Ctl_getPeerName': basis/Net/Socket/Socket.c:125: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_Ctl_setIOCtl': basis/Net/Socket/Socket.c:120: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_Ctl_getIOCtl': basis/Net/Socket/Socket.c:114: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_Ctl_setSockOpt': basis/Net/Socket/Socket.c:108: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_Ctl_getSockOpt': basis/Net/Socket/Socket.c:101: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_shutdown': basis/Net/Socket/Socket.c:94: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_recvFrom': basis/Net/Socket/Socket.c:49: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_recv': basis/Net/Socket/Socket.c:40: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_listen': basis/Net/Socket/Socket.c:33: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_connect': basis/Net/Socket/Socket.c:24: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_sendVecTo': basis/Net/Socket/Socket.c:89: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/Socket.c: In function 'Socket_sendVec': basis/Net/Socket/Socket.c:67: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/Socket/UnixSock-pic.o basis/Net/Socket/UnixSock.c basis/Net/Socket/UnixSock.c: In function 'Socket_UnixSock_toAddr': basis/Net/Socket/UnixSock.c:22: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/UnixSock.c: In function 'Socket_UnixSock_pathLen': basis/Net/Socket/UnixSock.c:35: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/UnixSock.c: In function 'Socket_UnixSock_fromAddr': basis/Net/Socket/UnixSock.c:45: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Net/Socket/select-pic.o basis/Net/Socket/select.c basis/Net/Socket/select.c: In function 'Socket_setTimeout': basis/Net/Socket/select.c:10: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/select.c: In function 'Socket_getTimeout_sec': basis/Net/Socket/select.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/select.c: In function 'Socket_getTimeout_usec': basis/Net/Socket/select.c:16: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/select.c: In function 'Socket_setTimeoutNull': basis/Net/Socket/select.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Net/Socket/select.c: In function 'Socket_select': basis/Net/Socket/select.c:93: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Error-consts-pic.o basis/Posix/Error-consts.c basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error-consts.c:318: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Error-pic.o basis/Posix/Error.c basis/Posix/Error.c: In function 'Posix_Error_clearErrno': basis/Posix/Error.c:5: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error.c: In function 'Posix_Error_getErrno': basis/Posix/Error.c:9: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Error.c: In function 'Posix_Error_strError': basis/Posix/Error.c:14: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/Dirstream-pic.o basis/Posix/FileSys/Dirstream.c basis/Posix/FileSys/Dirstream.c: In function 'Posix_FileSys_Dirstream_rewindDir': basis/Posix/FileSys/Dirstream.c:23: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Dirstream.c: In function 'Posix_FileSys_Dirstream_readDir': basis/Posix/FileSys/Dirstream.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Dirstream.c: In function 'Posix_FileSys_Dirstream_openDir': basis/Posix/FileSys/Dirstream.c:10: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Dirstream.c: In function 'Posix_FileSys_Dirstream_closeDir': basis/Posix/FileSys/Dirstream.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/FileSys-consts-pic.o basis/Posix/FileSys/FileSys-consts.c basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/FileSys-consts.c:142: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/ST-pic.o basis/Posix/FileSys/ST.c basis/Posix/FileSys/ST.c: In function 'Posix_FileSys_ST_isBlk': basis/Posix/FileSys/ST.c:5: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/ST.c: In function 'Posix_FileSys_ST_isChr': basis/Posix/FileSys/ST.c:9: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/ST.c: In function 'Posix_FileSys_ST_isDir': basis/Posix/FileSys/ST.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/ST.c: In function 'Posix_FileSys_ST_isFIFO': basis/Posix/FileSys/ST.c:17: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/ST.c: In function 'Posix_FileSys_ST_isLink': basis/Posix/FileSys/ST.c:21: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/ST.c: In function 'Posix_FileSys_ST_isReg': basis/Posix/FileSys/ST.c:25: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/ST.c: In function 'Posix_FileSys_ST_isSock': basis/Posix/FileSys/ST.c:29: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/Stat-pic.o basis/Posix/FileSys/Stat.c basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getDev': basis/Posix/FileSys/Stat.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getINo': basis/Posix/FileSys/Stat.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getMode': basis/Posix/FileSys/Stat.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getNLink': basis/Posix/FileSys/Stat.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getUId': basis/Posix/FileSys/Stat.c:23: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getGId': basis/Posix/FileSys/Stat.c:27: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getRDev': basis/Posix/FileSys/Stat.c:31: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getSize': basis/Posix/FileSys/Stat.c:35: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getATime': basis/Posix/FileSys/Stat.c:39: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getMTime': basis/Posix/FileSys/Stat.c:43: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_getCTime': basis/Posix/FileSys/Stat.c:47: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_stat': basis/Posix/FileSys/Stat.c:69: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_lstat': basis/Posix/FileSys/Stat.c:65: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Stat.c: In function 'Posix_FileSys_Stat_fstat': basis/Posix/FileSys/Stat.c:61: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/Utimbuf-pic.o basis/Posix/FileSys/Utimbuf.c basis/Posix/FileSys/Utimbuf.c: In function 'Posix_FileSys_Utimbuf_setAcTime': basis/Posix/FileSys/Utimbuf.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Utimbuf.c: In function 'Posix_FileSys_Utimbuf_setModTime': basis/Posix/FileSys/Utimbuf.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/FileSys/Utimbuf.c: In function 'Posix_FileSys_Utimbuf_utime': basis/Posix/FileSys/Utimbuf.c:15: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/access-pic.o basis/Posix/FileSys/access.c basis/Posix/FileSys/access.c: In function 'Posix_FileSys_access': basis/Posix/FileSys/access.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/chdir-pic.o basis/Posix/FileSys/chdir.c basis/Posix/FileSys/chdir.c: In function 'Posix_FileSys_chdir': basis/Posix/FileSys/chdir.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/chmod-pic.o basis/Posix/FileSys/chmod.c basis/Posix/FileSys/chmod.c: In function 'Posix_FileSys_chmod': basis/Posix/FileSys/chmod.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/chown-pic.o basis/Posix/FileSys/chown.c basis/Posix/FileSys/chown.c: In function 'Posix_FileSys_chown': basis/Posix/FileSys/chown.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/fchdir-pic.o basis/Posix/FileSys/fchdir.c basis/Posix/FileSys/fchdir.c: In function 'Posix_FileSys_fchdir': basis/Posix/FileSys/fchdir.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/fchmod-pic.o basis/Posix/FileSys/fchmod.c basis/Posix/FileSys/fchmod.c: In function 'Posix_FileSys_fchmod': basis/Posix/FileSys/fchmod.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/fchown-pic.o basis/Posix/FileSys/fchown.c basis/Posix/FileSys/fchown.c: In function 'Posix_FileSys_fchown': basis/Posix/FileSys/fchown.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/fpathconf-pic.o basis/Posix/FileSys/fpathconf.c basis/Posix/FileSys/fpathconf.c: In function 'Posix_FileSys_fpathconf': basis/Posix/FileSys/fpathconf.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/ftruncate-pic.o basis/Posix/FileSys/ftruncate.c basis/Posix/FileSys/ftruncate.c: In function 'Posix_FileSys_ftruncate': basis/Posix/FileSys/ftruncate.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/getcwd-pic.o basis/Posix/FileSys/getcwd.c basis/Posix/FileSys/getcwd.c: In function 'Posix_FileSys_getcwd': basis/Posix/FileSys/getcwd.c:6: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/link-pic.o basis/Posix/FileSys/link.c basis/Posix/FileSys/link.c: In function 'Posix_FileSys_link': basis/Posix/FileSys/link.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/mkdir-pic.o basis/Posix/FileSys/mkdir.c basis/Posix/FileSys/mkdir.c: In function 'Posix_FileSys_mkdir': basis/Posix/FileSys/mkdir.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/mkfifo-pic.o basis/Posix/FileSys/mkfifo.c basis/Posix/FileSys/mkfifo.c: In function 'Posix_FileSys_mkfifo': basis/Posix/FileSys/mkfifo.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/open2-pic.o basis/Posix/FileSys/open2.c basis/Posix/FileSys/open2.c: In function 'Posix_FileSys_open2': basis/Posix/FileSys/open2.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/open3-pic.o basis/Posix/FileSys/open3.c basis/Posix/FileSys/open3.c: In function 'Posix_FileSys_open3': basis/Posix/FileSys/open3.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/pathconf-pic.o basis/Posix/FileSys/pathconf.c basis/Posix/FileSys/pathconf.c: In function 'Posix_FileSys_pathconf': basis/Posix/FileSys/pathconf.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/readlink-pic.o basis/Posix/FileSys/readlink.c basis/Posix/FileSys/readlink.c: In function 'Posix_FileSys_readlink': basis/Posix/FileSys/readlink.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/rename-pic.o basis/Posix/FileSys/rename.c basis/Posix/FileSys/rename.c: In function 'Posix_FileSys_rename': basis/Posix/FileSys/rename.c:17: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/rmdir-pic.o basis/Posix/FileSys/rmdir.c basis/Posix/FileSys/rmdir.c: In function 'Posix_FileSys_rmdir': basis/Posix/FileSys/rmdir.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/symlink-pic.o basis/Posix/FileSys/symlink.c basis/Posix/FileSys/symlink.c: In function 'Posix_FileSys_symlink': basis/Posix/FileSys/symlink.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/truncate-pic.o basis/Posix/FileSys/truncate.c basis/Posix/FileSys/truncate.c: In function 'Posix_FileSys_truncate': basis/Posix/FileSys/truncate.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/umask-pic.o basis/Posix/FileSys/umask.c basis/Posix/FileSys/umask.c: In function 'Posix_FileSys_umask': basis/Posix/FileSys/umask.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/FileSys/unlink-pic.o basis/Posix/FileSys/unlink.c basis/Posix/FileSys/unlink.c: In function 'Posix_FileSys_unlink': basis/Posix/FileSys/unlink.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/FLock-consts-pic.o basis/Posix/IO/FLock-consts.c basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock-consts.c:13: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/FLock-pic.o basis/Posix/IO/FLock.c basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_getType': basis/Posix/IO/FLock.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_getWhence': basis/Posix/IO/FLock.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_getStart': basis/Posix/IO/FLock.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_getLen': basis/Posix/IO/FLock.c:23: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_getPId': basis/Posix/IO/FLock.c:27: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_setType': basis/Posix/IO/FLock.c:31: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_setWhence': basis/Posix/IO/FLock.c:35: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_setStart': basis/Posix/IO/FLock.c:39: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_setLen': basis/Posix/IO/FLock.c:43: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_setPId': basis/Posix/IO/FLock.c:47: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/FLock.c: In function 'Posix_IO_FLock_fcntl': basis/Posix/IO/FLock.c:7: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/close-pic.o basis/Posix/IO/close.c basis/Posix/IO/close.c: In function 'Posix_IO_close': basis/Posix/IO/close.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/dup-pic.o basis/Posix/IO/dup.c basis/Posix/IO/dup.c: In function 'Posix_IO_dup': basis/Posix/IO/dup.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/dup2-pic.o basis/Posix/IO/dup2.c basis/Posix/IO/dup2.c: In function 'Posix_IO_dup2': basis/Posix/IO/dup2.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/fcntl-consts-pic.o basis/Posix/IO/fcntl-consts.c basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/fcntl-consts.c:13: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/fcntl2-pic.o basis/Posix/IO/fcntl2.c basis/Posix/IO/fcntl2.c: In function 'Posix_IO_fcntl2': basis/Posix/IO/fcntl2.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/fcntl3-pic.o basis/Posix/IO/fcntl3.c basis/Posix/IO/fcntl3.c: In function 'Posix_IO_fcntl3': basis/Posix/IO/fcntl3.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/fsync-pic.o basis/Posix/IO/fsync.c basis/Posix/IO/fsync.c: In function 'Posix_IO_fsync': basis/Posix/IO/fsync.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/lseek-consts-pic.o basis/Posix/IO/lseek-consts.c basis/Posix/IO/lseek-consts.c:5: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/lseek-consts.c:5: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/lseek-consts.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/lseek-pic.o basis/Posix/IO/lseek.c basis/Posix/IO/lseek.c: In function 'Posix_IO_lseek': basis/Posix/IO/lseek.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/pipe-pic.o basis/Posix/IO/pipe.c basis/Posix/IO/pipe.c: In function 'Posix_IO_pipe': basis/Posix/IO/pipe.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/read-pic.o basis/Posix/IO/read.c basis/Posix/IO/read.c: In function 'Posix_IO_readWord8': basis/Posix/IO/read.c:18: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/read.c: In function 'Posix_IO_readChar8': basis/Posix/IO/read.c:13: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/IO/write-pic.o basis/Posix/IO/write.c basis/Posix/IO/write.c: In function 'Posix_IO_writeChar8Vec': basis/Posix/IO/write.c:18: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/write.c: In function 'Posix_IO_writeChar8Arr': basis/Posix/IO/write.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/write.c: In function 'Posix_IO_writeWord8Vec': basis/Posix/IO/write.c:28: warning: visibility attribute not supported in this configuration; ignored basis/Posix/IO/write.c: In function 'Posix_IO_writeWord8Arr': basis/Posix/IO/write.c:23: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/ProcEnv-pic.o basis/Posix/ProcEnv/ProcEnv.c basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_setuid': basis/Posix/ProcEnv/ProcEnv.c:50: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_setsid': basis/Posix/ProcEnv/ProcEnv.c:46: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_setpgid': basis/Posix/ProcEnv/ProcEnv.c:42: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_setgid': basis/Posix/ProcEnv/ProcEnv.c:38: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_getuid': basis/Posix/ProcEnv/ProcEnv.c:34: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_getpgrp': basis/Posix/ProcEnv/ProcEnv.c:30: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_getppid': basis/Posix/ProcEnv/ProcEnv.c:26: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_getpid': basis/Posix/ProcEnv/ProcEnv.c:22: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_getgid': basis/Posix/ProcEnv/ProcEnv.c:18: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_geteuid': basis/Posix/ProcEnv/ProcEnv.c:14: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_getegid': basis/Posix/ProcEnv/ProcEnv.c:10: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/ProcEnv.c: In function 'Posix_ProcEnv_ctermid': basis/Posix/ProcEnv/ProcEnv.c:6: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/Times-pic.o basis/Posix/ProcEnv/Times.c basis/Posix/ProcEnv/Times.c: In function 'Posix_ProcEnv_Times_getUTime': basis/Posix/ProcEnv/Times.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Times.c: In function 'Posix_ProcEnv_Times_getSTime': basis/Posix/ProcEnv/Times.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Times.c: In function 'Posix_ProcEnv_Times_getCUTime': basis/Posix/ProcEnv/Times.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Times.c: In function 'Posix_ProcEnv_Times_getCSTime': basis/Posix/ProcEnv/Times.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Times.c: In function 'Posix_ProcEnv_times': basis/Posix/ProcEnv/Times.c:23: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/Uname-pic.o basis/Posix/ProcEnv/Uname.c basis/Posix/ProcEnv/Uname.c: In function 'Posix_ProcEnv_Uname_getSysName': basis/Posix/ProcEnv/Uname.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Uname.c: In function 'Posix_ProcEnv_Uname_getNodeName': basis/Posix/ProcEnv/Uname.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Uname.c: In function 'Posix_ProcEnv_Uname_getRelease': basis/Posix/ProcEnv/Uname.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Uname.c: In function 'Posix_ProcEnv_Uname_getVersion': basis/Posix/ProcEnv/Uname.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Uname.c: In function 'Posix_ProcEnv_Uname_getMachine': basis/Posix/ProcEnv/Uname.c:23: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/Uname.c: In function 'Posix_ProcEnv_uname': basis/Posix/ProcEnv/Uname.c:27: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/environ-pic.o basis/Posix/ProcEnv/environ.c basis/Posix/ProcEnv/environ.c:4: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/getenv-pic.o basis/Posix/ProcEnv/getenv.c basis/Posix/ProcEnv/getenv.c: In function 'Posix_ProcEnv_getenv': basis/Posix/ProcEnv/getenv.c:6: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/getgroups-pic.o basis/Posix/ProcEnv/getgroups.c basis/Posix/ProcEnv/getgroups.c: In function 'Posix_ProcEnv_getgroups': basis/Posix/ProcEnv/getgroups.c:9: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/getgroups.c: In function 'Posix_ProcEnv_getgroupsN': basis/Posix/ProcEnv/getgroups.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/getlogin-pic.o basis/Posix/ProcEnv/getlogin.c basis/Posix/ProcEnv/getlogin.c: In function 'Posix_ProcEnv_getlogin': basis/Posix/ProcEnv/getlogin.c:6: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/isatty-pic.o basis/Posix/ProcEnv/isatty.c basis/Posix/ProcEnv/isatty.c: In function 'Posix_ProcEnv_isatty': basis/Posix/ProcEnv/isatty.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/setenv-pic.o basis/Posix/ProcEnv/setenv.c basis/Posix/ProcEnv/setenv.c: In function 'Posix_ProcEnv_setenv': basis/Posix/ProcEnv/setenv.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/setgroups-pic.o basis/Posix/ProcEnv/setgroups.c basis/Posix/ProcEnv/setgroups.c: In function 'Posix_ProcEnv_setgroups': basis/Posix/ProcEnv/setgroups.c:4: warning: passing argument 2 of 'setgroups' discards qualifiers from pointer target type basis/Posix/ProcEnv/setgroups.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/sysconf-consts-pic.o basis/Posix/ProcEnv/sysconf-consts.c basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored basis/Posix/ProcEnv/sysconf-consts.c:506: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/sysconf-pic.o basis/Posix/ProcEnv/sysconf.c basis/Posix/ProcEnv/sysconf.c: In function 'Posix_ProcEnv_sysconf': basis/Posix/ProcEnv/sysconf.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/ProcEnv/ttyname-pic.o basis/Posix/ProcEnv/ttyname.c basis/Posix/ProcEnv/ttyname.c: In function 'Posix_ProcEnv_ttyname': basis/Posix/ProcEnv/ttyname.c:6: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/alarm-pic.o basis/Posix/Process/alarm.c basis/Posix/Process/alarm.c: In function 'Posix_Process_alarm': basis/Posix/Process/alarm.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/exece-pic.o basis/Posix/Process/exece.c basis/Posix/Process/exece.c: In function 'Posix_Process_exece': basis/Posix/Process/exece.c:31: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/execp-pic.o basis/Posix/Process/execp.c basis/Posix/Process/execp.c: In function 'Posix_Process_execp': basis/Posix/Process/execp.c:21: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/exit-pic.o basis/Posix/Process/exit.c basis/Posix/Process/exit.c: In function 'Posix_Process_exit': basis/Posix/Process/exit.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/exitStatus-pic.o basis/Posix/Process/exitStatus.c basis/Posix/Process/exitStatus.c: In function 'Posix_Process_exitStatus': basis/Posix/Process/exitStatus.c:8: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/fork-pic.o basis/Posix/Process/fork.c basis/Posix/Process/fork.c: In function 'Posix_Process_fork': basis/Posix/Process/fork.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/ifExited-pic.o basis/Posix/Process/ifExited.c basis/Posix/Process/ifExited.c: In function 'Posix_Process_ifExited': basis/Posix/Process/ifExited.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/ifSignaled-pic.o basis/Posix/Process/ifSignaled.c basis/Posix/Process/ifSignaled.c: In function 'Posix_Process_ifSignaled': basis/Posix/Process/ifSignaled.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/ifStopped-pic.o basis/Posix/Process/ifStopped.c basis/Posix/Process/ifStopped.c: In function 'Posix_Process_ifStopped': basis/Posix/Process/ifStopped.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/kill-pic.o basis/Posix/Process/kill.c basis/Posix/Process/kill.c: In function 'Posix_Process_kill': basis/Posix/Process/kill.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/nanosleep-pic.o basis/Posix/Process/nanosleep.c basis/Posix/Process/nanosleep.c: In function 'Posix_Process_nanosleep': basis/Posix/Process/nanosleep.c:16: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/pause-pic.o basis/Posix/Process/pause.c basis/Posix/Process/pause.c: In function 'Posix_Process_pause': basis/Posix/Process/pause.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/sleep-pic.o basis/Posix/Process/sleep.c basis/Posix/Process/sleep.c: In function 'Posix_Process_sleep': basis/Posix/Process/sleep.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/stopSig-pic.o basis/Posix/Process/stopSig.c basis/Posix/Process/stopSig.c: In function 'Posix_Process_stopSig': basis/Posix/Process/stopSig.c:8: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/system-pic.o basis/Posix/Process/system.c basis/Posix/Process/system.c: In function 'Posix_Process_system': basis/Posix/Process/system.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/termSig-pic.o basis/Posix/Process/termSig.c basis/Posix/Process/termSig.c: In function 'Posix_Process_termSig': basis/Posix/Process/termSig.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/waitpid-consts-pic.o basis/Posix/Process/waitpid-consts.c basis/Posix/Process/waitpid-consts.c:5: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Process/waitpid-consts.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Process/waitpid-pic.o basis/Posix/Process/waitpid.c basis/Posix/Process/waitpid.c: In function 'Posix_Process_waitpid': basis/Posix/Process/waitpid.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Signal-consts-pic.o basis/Posix/Signal-consts.c basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal-consts.c:126: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/Signal-pic.o basis/Posix/Signal.c basis/Posix/Signal.c: In function 'Posix_Signal_sigsuspend': basis/Posix/Signal.c:119: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_sigprocmask': basis/Posix/Signal.c:112: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_sigismember': basis/Posix/Signal.c:108: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_sigfillset': basis/Posix/Signal.c:104: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_sigemptyset': basis/Posix/Signal.c:100: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_sigdelset': basis/Posix/Signal.c:96: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_sigaddset': basis/Posix/Signal.c:92: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_isPending': basis/Posix/Signal.c:77: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_resetPending': basis/Posix/Signal.c:86: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_isPendingGC': basis/Posix/Signal.c:81: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_handleGC': basis/Posix/Signal.c:73: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_handlee': basis/Posix/Signal.c:69: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_isIgnore': basis/Posix/Signal.c:55: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_ignore': basis/Posix/Signal.c:45: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_isDefault': basis/Posix/Signal.c:35: warning: visibility attribute not supported in this configuration; ignored basis/Posix/Signal.c: In function 'Posix_Signal_default': basis/Posix/Signal.c:25: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/SysDB/Group-pic.o basis/Posix/SysDB/Group.c basis/Posix/SysDB/Group.c: In function 'Posix_SysDB_Group_getName': basis/Posix/SysDB/Group.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Group.c: In function 'Posix_SysDB_Group_getGId': basis/Posix/SysDB/Group.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Group.c: In function 'Posix_SysDB_Group_getMem': basis/Posix/SysDB/Group.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Group.c: In function 'Posix_SysDB_getgrnam': basis/Posix/SysDB/Group.c:23: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Group.c: In function 'Posix_SysDB_getgrgid': basis/Posix/SysDB/Group.c:19: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/SysDB/Passwd-pic.o basis/Posix/SysDB/Passwd.c basis/Posix/SysDB/Passwd.c: In function 'Posix_SysDB_Passwd_getName': basis/Posix/SysDB/Passwd.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Passwd.c: In function 'Posix_SysDB_Passwd_getUId': basis/Posix/SysDB/Passwd.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Passwd.c: In function 'Posix_SysDB_Passwd_getGId': basis/Posix/SysDB/Passwd.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Passwd.c: In function 'Posix_SysDB_Passwd_getDir': basis/Posix/SysDB/Passwd.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Passwd.c: In function 'Posix_SysDB_Passwd_getShell': basis/Posix/SysDB/Passwd.c:23: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Passwd.c: In function 'Posix_SysDB_getpwuid': basis/Posix/SysDB/Passwd.c:31: warning: visibility attribute not supported in this configuration; ignored basis/Posix/SysDB/Passwd.c: In function 'Posix_SysDB_getpwnam': basis/Posix/SysDB/Passwd.c:27: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/TTY-consts-pic.o basis/Posix/TTY-consts.c basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY-consts.c:400: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Posix/TTY-pic.o basis/Posix/TTY.c basis/Posix/TTY.c: In function 'Posix_TTY_Termios_getIFlag': basis/Posix/TTY.c:7: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_getOFlag': basis/Posix/TTY.c:11: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_getCFlag': basis/Posix/TTY.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_getLFlag': basis/Posix/TTY.c:19: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_getCC': basis/Posix/TTY.c:24: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_setIFlag': basis/Posix/TTY.c:36: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_setOFlag': basis/Posix/TTY.c:40: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_setCFlag': basis/Posix/TTY.c:44: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_setLFlag': basis/Posix/TTY.c:48: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_setCC': basis/Posix/TTY.c:53: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_setpgrp': basis/Posix/TTY.c:93: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_setattr': basis/Posix/TTY.c:89: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_sendbreak': basis/Posix/TTY.c:85: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_getpgrp': basis/Posix/TTY.c:81: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_getattr': basis/Posix/TTY.c:77: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_flush': basis/Posix/TTY.c:73: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_flow': basis/Posix/TTY.c:69: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_TC_drain': basis/Posix/TTY.c:65: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_cfSetISpeed': basis/Posix/TTY.c:61: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_cfSetOSpeed': basis/Posix/TTY.c:57: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_cfGetISpeed': basis/Posix/TTY.c:32: warning: visibility attribute not supported in this configuration; ignored basis/Posix/TTY.c: In function 'Posix_TTY_Termios_cfGetOSpeed': basis/Posix/TTY.c:28: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Real/IEEEReal-consts-pic.o basis/Real/IEEEReal-consts.c basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal-consts.c:13: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Real/IEEEReal-pic.o basis/Real/IEEEReal.c basis/Real/IEEEReal.c: In function 'IEEEReal_setRoundingMode': basis/Real/IEEEReal.c:81: warning: visibility attribute not supported in this configuration; ignored basis/Real/IEEEReal.c: In function 'IEEEReal_getRoundingMode': basis/Real/IEEEReal.c:76: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Real/Math-pic.o basis/Real/Math.c basis/Real/Math-fns.h: In function 'Real64_abs': basis/Real/Math-fns.h:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_abs': basis/Real/Math-fns.h:13: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_modf': basis/Real/Math-fns.h:120: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_modf': basis/Real/Math-fns.h:120: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_ldexp': basis/Real/Math-fns.h:83: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_ldexp': basis/Real/Math-fns.h:83: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_frexp': basis/Real/Math-fns.h:69: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_frexp': basis/Real/Math-fns.h:69: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_tanh': basis/Real/Math-fns.h:55: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_tanh': basis/Real/Math-fns.h:55: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_tan': basis/Real/Math-fns.h:54: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_tan': basis/Real/Math-fns.h:54: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_sqrt': basis/Real/Math-fns.h:53: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_sqrt': basis/Real/Math-fns.h:53: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_sinh': basis/Real/Math-fns.h:52: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_sinh': basis/Real/Math-fns.h:52: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_sin': basis/Real/Math-fns.h:51: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_sin': basis/Real/Math-fns.h:51: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_log10': basis/Real/Math-fns.h:50: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_log10': basis/Real/Math-fns.h:50: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_ln': basis/Real/Math-fns.h:49: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_ln': basis/Real/Math-fns.h:49: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_exp': basis/Real/Math-fns.h:48: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_exp': basis/Real/Math-fns.h:48: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_cosh': basis/Real/Math-fns.h:47: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_cosh': basis/Real/Math-fns.h:47: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_cos': basis/Real/Math-fns.h:46: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_cos': basis/Real/Math-fns.h:46: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_atan': basis/Real/Math-fns.h:45: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_atan': basis/Real/Math-fns.h:45: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_asin': basis/Real/Math-fns.h:44: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_asin': basis/Real/Math-fns.h:44: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_acos': basis/Real/Math-fns.h:43: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_acos': basis/Real/Math-fns.h:43: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_pow': basis/Real/Math-fns.h:29: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_pow': basis/Real/Math-fns.h:29: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_Math_atan2': basis/Real/Math-fns.h:28: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_Math_atan2': basis/Real/Math-fns.h:28: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real32_round': basis/Real/Math-fns.h:14: warning: visibility attribute not supported in this configuration; ignored basis/Real/Math-fns.h: In function 'Real64_round': basis/Real/Math-fns.h:14: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Real/Real-consts-pic.o basis/Real/Real-consts.c basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-consts.c:15: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wno-float-equal -c -o basis/Real/Real-pic.o basis/Real/Real.c basis/Real/Real-ops.h: In function 'Real32_add': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_div': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_mul': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_sub': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_equal': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_le': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_lt': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_muladd': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_mulsub': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_neg': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_fetch': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_store': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real32_move': basis/Real/Real-ops.h:73: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_add': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_div': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_mul': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_sub': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_equal': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_le': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_lt': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_muladd': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_mulsub': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_neg': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_fetch': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_store': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored basis/Real/Real-ops.h: In function 'Real64_move': basis/Real/Real-ops.h:74: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Real/class-pic.o basis/Real/class.c basis/Real/class.c: In function 'Real64_class': basis/Real/class.c:90: warning: visibility attribute not supported in this configuration; ignored basis/Real/class.c: In function 'Real32_class': basis/Real/class.c:75: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Real/gdtoa-pic.o basis/Real/gdtoa.c In file included from basis/Real/gdtoa.c:2: ./gdtoa/gdtoa.h:116: warning: redundant redeclaration of 'strtof' /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.2.4/include/stdlib.h:140: warning: previous declaration of 'strtof' was here ./gdtoa/gdtoa.h:117: warning: redundant redeclaration of 'strtod' /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.2.4/include/stdlib.h:126: warning: previous declaration of 'strtod' was here basis/Real/gdtoa.c: In function 'Real32_gdtoa': basis/Real/gdtoa.c:28: warning: implicit declaration of function 'gdtoa__gdtoa' basis/Real/gdtoa.c:28: warning: nested extern declaration of 'gdtoa__gdtoa' basis/Real/gdtoa.c:28: warning: assignment makes pointer from integer without a cast basis/Real/gdtoa.c: In function 'Real64_gdtoa': basis/Real/gdtoa.c:63: warning: assignment makes pointer from integer without a cast basis/Real/gdtoa.c: In function 'Real32_gdtoa': basis/Real/gdtoa.c:33: warning: visibility attribute not supported in this configuration; ignored basis/Real/gdtoa.c: In function 'Real64_gdtoa': basis/Real/gdtoa.c:68: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Real/signBit-pic.o basis/Real/signBit.c basis/Real/signBit.c: In function 'Real64_signBit': basis/Real/signBit.c:83: warning: visibility attribute not supported in this configuration; ignored basis/Real/signBit.c: In function 'Real32_signBit': basis/Real/signBit.c:53: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Real/strto-pic.o basis/Real/strto.c In file included from basis/Real/strto.c:2: ./gdtoa/gdtoa.h:116: warning: redundant redeclaration of 'strtof' /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.2.4/include/stdlib.h:140: warning: previous declaration of 'strtof' was here ./gdtoa/gdtoa.h:117: warning: redundant redeclaration of 'strtod' /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.2.4/include/stdlib.h:126: warning: previous declaration of 'strtod' was here basis/Real/strto.c: In function 'Real32_strto': basis/Real/strto.c:9: warning: implicit declaration of function 'gdtoa__strtorf' basis/Real/strto.c:9: warning: nested extern declaration of 'gdtoa__strtorf' basis/Real/strto.c: In function 'Real64_strto': basis/Real/strto.c:19: warning: implicit declaration of function 'gdtoa__strtord' basis/Real/strto.c:19: warning: nested extern declaration of 'gdtoa__strtord' basis/Real/strto.c:22: warning: visibility attribute not supported in this configuration; ignored basis/Real/strto.c: In function 'Real32_strto': basis/Real/strto.c:12: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Stdio-pic.o basis/Stdio.c basis/Stdio.c: In function 'Stdio_printStdout': basis/Stdio.c:17: warning: visibility attribute not supported in this configuration; ignored basis/Stdio.c: In function 'Stdio_printStderr': basis/Stdio.c:9: warning: visibility attribute not supported in this configuration; ignored basis/Stdio.c: In function 'Stdio_print': basis/Stdio.c:21: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/System/CommandLine-pic.o basis/System/CommandLine.c basis/System/CommandLine.c:6: warning: visibility attribute not supported in this configuration; ignored basis/System/CommandLine.c:6: warning: visibility attribute not supported in this configuration; ignored basis/System/CommandLine.c:6: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -Wno-format-nonliteral -c -o basis/System/Date-pic.o basis/System/Date.c basis/System/Date.c: In function 'Date_Tm_getHour': basis/System/Date.c:6: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getIsDst': basis/System/Date.c:7: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getMDay': basis/System/Date.c:8: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getMin': basis/System/Date.c:9: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getMon': basis/System/Date.c:10: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getSec': basis/System/Date.c:11: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getWDay': basis/System/Date.c:12: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getYDay': basis/System/Date.c:13: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_getYear': basis/System/Date.c:14: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setHour': basis/System/Date.c:16: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setIsDst': basis/System/Date.c:17: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setMDay': basis/System/Date.c:18: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setMin': basis/System/Date.c:19: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setMon': basis/System/Date.c:20: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setSec': basis/System/Date.c:21: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setWDay': basis/System/Date.c:22: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setYDay': basis/System/Date.c:23: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_Tm_setYear': basis/System/Date.c:24: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_strfTime': basis/System/Date.c:53: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_mkTime': basis/System/Date.c:49: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_localTime': basis/System/Date.c:45: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_gmTime': basis/System/Date.c:30: warning: visibility attribute not supported in this configuration; ignored basis/System/Date.c: In function 'Date_localOffset': basis/System/Date.c:39: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/System/OS/IO/poll-consts-pic.o basis/System/OS/IO/poll-consts.c basis/System/OS/IO/poll-consts.c:5: warning: visibility attribute not supported in this configuration; ignored basis/System/OS/IO/poll-consts.c:5: warning: visibility attribute not supported in this configuration; ignored basis/System/OS/IO/poll-consts.c:5: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/System/OS/IO/poll-pic.o basis/System/OS/IO/poll.c basis/System/OS/IO/poll.c: In function 'OS_IO_poll': basis/System/OS/IO/poll.c:22: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/System/Time-pic.o basis/System/Time.c basis/System/Time.c: In function 'Time_getTimeOfDay': basis/System/Time.c:12: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/Word/Word-pic.o basis/Word/Word.c basis/Word/Word-ops.h: In function 'Word8_add': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_andb': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_equal': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_ge': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_ge': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_gt': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_gt': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_le': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_le': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_lshift': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_lt': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_lt': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_mul': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_mul': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_neg': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_notb': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_quot': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_rem': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_quot': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_rem': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_orb': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_rol': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_ror': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS8_rshift': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU8_rshift': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_sub': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word8_xorb': basis/Word/Word-ops.h:114: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_add': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_andb': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_equal': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_ge': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_ge': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_gt': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_gt': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_le': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_le': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_lshift': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_lt': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_lt': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_mul': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_mul': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_neg': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_notb': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_quot': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_rem': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_quot': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_rem': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_orb': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_rol': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_ror': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS16_rshift': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU16_rshift': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_sub': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word16_xorb': basis/Word/Word-ops.h:115: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_add': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_andb': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_equal': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_ge': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_ge': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_gt': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_gt': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_le': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_le': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_lshift': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_lt': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_lt': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_mul': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_mul': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_neg': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_notb': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_quot': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_rem': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_quot': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_rem': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_orb': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_rol': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_ror': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS32_rshift': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU32_rshift': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_sub': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word32_xorb': basis/Word/Word-ops.h:116: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_add': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_andb': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_equal': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_ge': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_ge': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_gt': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_gt': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_le': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_le': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_lshift': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_lt': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_lt': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_mul': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_mul': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_neg': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_notb': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_quot': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_rem': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_quot': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_rem': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_orb': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_rol': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_ror': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordS64_rshift': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'WordU64_rshift': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_sub': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_xorb': basis/Word/Word-ops.h:117: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_fetch': basis/Word/Word-ops.h:119: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_store': basis/Word/Word-ops.h:119: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-ops.h: In function 'Word64_move': basis/Word/Word-ops.h:119: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS8_addCheckOverflows': basis/Word/Word-check.h:157: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU8_addCheckOverflows': basis/Word/Word-check.h:157: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS8_mulCheckOverflows': basis/Word/Word-check.h:157: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU8_mulCheckOverflows': basis/Word/Word-check.h:157: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS8_negCheckOverflows': basis/Word/Word-check.h:157: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS8_subCheckOverflows': basis/Word/Word-check.h:157: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS16_addCheckOverflows': basis/Word/Word-check.h:158: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU16_addCheckOverflows': basis/Word/Word-check.h:158: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS16_mulCheckOverflows': basis/Word/Word-check.h:158: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU16_mulCheckOverflows': basis/Word/Word-check.h:158: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS16_negCheckOverflows': basis/Word/Word-check.h:158: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS16_subCheckOverflows': basis/Word/Word-check.h:158: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS32_addCheckOverflows': basis/Word/Word-check.h:159: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU32_addCheckOverflows': basis/Word/Word-check.h:159: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS32_mulCheckOverflows': basis/Word/Word-check.h:159: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU32_mulCheckOverflows': basis/Word/Word-check.h:159: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS32_negCheckOverflows': basis/Word/Word-check.h:159: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS32_subCheckOverflows': basis/Word/Word-check.h:159: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS64_addCheckOverflows': basis/Word/Word-check.h:160: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU64_addCheckOverflows': basis/Word/Word-check.h:160: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS64_mulCheckOverflows': basis/Word/Word-check.h:160: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordU64_mulCheckOverflows': basis/Word/Word-check.h:160: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS64_negCheckOverflows': basis/Word/Word-check.h:160: warning: visibility attribute not supported in this configuration; ignored basis/Word/Word-check.h: In function 'WordS64_subCheckOverflows': basis/Word/Word-check.h:160: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/coerce-pic.o basis/coerce.c basis/coerce.h: In function 'Real32_rndToWordS8': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToWordU8': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordS8': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordU8': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS8_extdToWord8': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU8_extdToWord8': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS8_extdToWord16': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU8_extdToWord16': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS8_extdToWord32': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU8_extdToWord32': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS8_extdToWord64': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU8_extdToWord64': basis/coerce.h:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToWordS16': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToWordU16': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordS16': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordU16': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS16_extdToWord8': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU16_extdToWord8': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS16_extdToWord16': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU16_extdToWord16': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS16_extdToWord32': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU16_extdToWord32': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS16_extdToWord64': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU16_extdToWord64': basis/coerce.h:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToWordS32': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToWordU32': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordS32': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordU32': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS32_extdToWord8': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU32_extdToWord8': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS32_extdToWord16': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU32_extdToWord16': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS32_extdToWord32': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU32_extdToWord32': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS32_extdToWord64': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU32_extdToWord64': basis/coerce.h:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToWordS64': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToWordU64': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordS64': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToWordU64': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS64_extdToWord8': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU64_extdToWord8': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS64_extdToWord16': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU64_extdToWord16': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS64_extdToWord32': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU64_extdToWord32': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordS64_extdToWord64': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'WordU64_extdToWord64': basis/coerce.h:25: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToReal32': basis/coerce.h:31: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_rndToReal64': basis/coerce.h:32: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToReal32': basis/coerce.h:33: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_rndToReal64': basis/coerce.h:34: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real32_castToWord32': basis/coerce.h:46: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Word32_castToReal32': basis/coerce.h:47: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Real64_castToWord64': basis/coerce.h:48: warning: visibility attribute not supported in this configuration; ignored basis/coerce.h: In function 'Word64_castToReal64': basis/coerce.h:49: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS8_rndToReal32': basis/coerce.c:21: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU8_rndToReal32': basis/coerce.c:21: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS8_rndToReal64': basis/coerce.c:21: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU8_rndToReal64': basis/coerce.c:21: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS16_rndToReal32': basis/coerce.c:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU16_rndToReal32': basis/coerce.c:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS16_rndToReal64': basis/coerce.c:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU16_rndToReal64': basis/coerce.c:22: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS32_rndToReal32': basis/coerce.c:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU32_rndToReal32': basis/coerce.c:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS32_rndToReal64': basis/coerce.c:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU32_rndToReal64': basis/coerce.c:23: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS64_rndToReal32': basis/coerce.c:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU64_rndToReal32': basis/coerce.c:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordS64_rndToReal64': basis/coerce.c:24: warning: visibility attribute not supported in this configuration; ignored basis/coerce.c: In function 'WordU64_rndToReal64': basis/coerce.c:24: warning: visibility attribute not supported in this configuration; ignored gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -DPIC -fPIC -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -c -o basis/cpointer-pic.o basis/cpointer.c basis/cpointer.h: In function 'CPointer_add': basis/cpointer.h:20: warning: visibility attribute not supported in this configuration; ignored basis/cpointer.h: In function 'CPointer_diff': basis/cpointer.h:24: warning: visibility attribute not supported in this configuration; ignored basis/cpointer.h: In function 'CPointer_equal': basis/cpointer.h:28: warning: visibility attribute not supported in this configuration; ignored basis/cpointer.h: In function 'CPointer_fromWord': basis/cpointer.h:32: warning: visibility attribute not supported in this configuration; ignored basis/cpointer.h: In function 'CPointer_lt': basis/cpointer.h:36: warning: visibility attribute not supported in this configuration; ignored basis/cpointer.h: In function 'CPointer_sub': basis/cpointer.h:40: warning: visibility attribute not supported in this configuration; ignored basis/cpointer.h: In function 'CPointer_toWord': basis/cpointer.h:44: warning: visibility attribute not supported in this configuration; ignored ar -X 64 rc libmlton-pic.a util-pic.o gc-pic.o platform-pic.o platform/aix-pic.o bytecode/interpret-pic.o basis/MLton/Itimer/itimer-consts-pic.o basis/MLton/Itimer/set-pic.o basis/MLton/Process/spawne-pic.o basis/MLton/Process/spawnp-pic.o basis/MLton/Rlimit/rlimit-consts-pic.o basis/MLton/Rlimit/rlimit-pic.o basis/MLton/Rusage/rusage-pic.o basis/MLton/Syslog/Syslog-consts-pic.o basis/MLton/Syslog/Syslog-pic.o basis/MLton/bug-pic.o basis/Net/Net-pic.o basis/Net/NetHostDB-consts-pic.o basis/Net/NetHostDB-pic.o basis/Net/NetProtDB-pic.o basis/Net/NetServDB-pic.o basis/Net/Socket/GenericSock-pic.o basis/Net/Socket/INetSock-consts-pic.o basis/Net/Socket/INetSock-pic.o basis/Net/Socket/Socket-consts-pic.o basis/Net/Socket/Socket-pic.o basis/Net/Socket/UnixSock-pic.o basis/Net/Socket/select-pic.o basis/Posix/Error-consts-pic.o basis/Posix/Error-pic.o basis/Posix/FileSys/Dirstream-pic.o basis/Posix/FileSys/FileSys-consts-pic.o basis/Posix/FileSys/ST-pic.o basis/Posix/FileSys/Stat-pic.o basis/Posix/FileSys/Utimbuf-pic.o basis/Posix/FileSys/access-pic.o basis/Posix/FileSys/chdir-pic.o basis/Posix/FileSys/chmod-pic.o basis/Posix/FileSys/chown-pic.o basis/Posix/FileSys/fchdir-pic.o basis/Posix/FileSys/fchmod-pic.o basis/Posix/FileSys/fchown-pic.o basis/Posix/FileSys/fpathconf-pic.o basis/Posix/FileSys/ftruncate-pic.o basis/Posix/FileSys/getcwd-pic.o basis/Posix/FileSys/link-pic.o basis/Posix/FileSys/mkdir-pic.o basis/Posix/FileSys/mkfifo-pic.o basis/Posix/FileSys/open2-pic.o basis/Posix/FileSys/open3-pic.o basis/Posix/FileSys/pathconf-pic.o basis/Posix/FileSys/readlink-pic.o basis/Posix/FileSys/rename-pic.o basis/Posix/FileSys/rmdir-pic.o basis/Posix/FileSys/symlink-pic.o basis/Posix/FileSys/truncate-pic.o basis/Posix/FileSys/umask-pic.o basis/Posix/FileSys/unlink-pic.o basis/Posix/IO/FLock-consts-pic.o basis/Posix/IO/FLock-pic.o basis/Posix/IO/close-pic.o basis/Posix/IO/dup-pic.o basis/Posix/IO/dup2-pic.o basis/Posix/IO/fcntl-consts-pic.o basis/Posix/IO/fcntl2-pic.o basis/Posix/IO/fcntl3-pic.o basis/Posix/IO/fsync-pic.o basis/Posix/IO/lseek-consts-pic.o basis/Posix/IO/lseek-pic.o basis/Posix/IO/pipe-pic.o basis/Posix/IO/read-pic.o basis/Posix/IO/write-pic.o basis/Posix/ProcEnv/ProcEnv-pic.o basis/Posix/ProcEnv/Times-pic.o basis/Posix/ProcEnv/Uname-pic.o basis/Posix/ProcEnv/environ-pic.o basis/Posix/ProcEnv/getenv-pic.o basis/Posix/ProcEnv/getgroups-pic.o basis/Posix/ProcEnv/getlogin-pic.o basis/Posix/ProcEnv/isatty-pic.o basis/Posix/ProcEnv/setenv-pic.o basis/Posix/ProcEnv/setgroups-pic.o basis/Posix/ProcEnv/sysconf-consts-pic.o basis/Posix/ProcEnv/sysconf-pic.o basis/Posix/ProcEnv/ttyname-pic.o basis/Posix/Process/alarm-pic.o basis/Posix/Process/exece-pic.o basis/Posix/Process/execp-pic.o basis/Posix/Process/exit-pic.o basis/Posix/Process/exitStatus-pic.o basis/Posix/Process/fork-pic.o basis/Posix/Process/ifExited-pic.o basis/Posix/Process/ifSignaled-pic.o basis/Posix/Process/ifStopped-pic.o basis/Posix/Process/kill-pic.o basis/Posix/Process/nanosleep-pic.o basis/Posix/Process/pause-pic.o basis/Posix/Process/sleep-pic.o basis/Posix/Process/stopSig-pic.o basis/Posix/Process/system-pic.o basis/Posix/Process/termSig-pic.o basis/Posix/Process/waitpid-consts-pic.o basis/Posix/Process/waitpid-pic.o basis/Posix/Signal-consts-pic.o basis/Posix/Signal-pic.o basis/Posix/SysDB/Group-pic.o basis/Posix/SysDB/Passwd-pic.o basis/Posix/TTY-consts-pic.o basis/Posix/TTY-pic.o basis/Real/IEEEReal-consts-pic.o basis/Real/IEEEReal-pic.o basis/Real/Math-pic.o basis/Real/Real-consts-pic.o basis/Real/Real-pic.o basis/Real/class-pic.o basis/Real/gdtoa-pic.o basis/Real/signBit-pic.o basis/Real/strto-pic.o basis/Stdio-pic.o basis/System/CommandLine-pic.o basis/System/Date-pic.o basis/System/OS/IO/poll-consts-pic.o basis/System/OS/IO/poll-pic.o basis/System/Time-pic.o basis/Word/Word-pic.o basis/coerce-pic.o basis/cpointer-pic.o ranlib libmlton-pic.a gcc -std=gnu99 -I. -Iplatform -fno-common -fvisibility=hidden -fgnu89-inline -maix64 -I/home/emil/local/include -O2 -fomit-frame-pointer -pedantic -Wall -Wextra -Wformat=2 -Wswitch-default -Wswitch-enum -Wuninitialized -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wmissing-field-initializers -Wmissing-noreturn -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wlong-long -o gen/gen-sizes -I. -L. -lmlton gen/gen-sizes.c util.o gen/gen-sizes.c: In function 'main': gen/gen-sizes.c:30: warning: visibility attribute not supported in this configuration; ignored gen/gen-sizes.c: At top level: gen/gen-sizes.c:30: warning: visibility attribute not supported in this configuration; ignored ld: 0711-224 WARNING: Duplicate symbol: .diee ld: 0711-224 WARNING: Duplicate symbol: .boolToString ld: 0711-224 WARNING: Duplicate symbol: .uintmaxToCommaString ld: 0711-224 WARNING: Duplicate symbol: .intmaxToCommaString ld: 0711-224 WARNING: Duplicate symbol: .die ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information. rm -f gen/sizes cd gen && ./gen-sizes rm -f gen/gen-sizes gmake[2]: Leaving directory `/tmp/mlton-svn-20090329/runtime' /bin/cp -fpR include/*.h "/tmp/mlton-svn-20090329/build/lib/include/" /bin/cp -fpR runtime/*.a "/tmp/mlton-svn-20090329/build/lib/self/" /bin/cp -fpR runtime/gen/sizes "/tmp/mlton-svn-20090329/build/lib/self/" mkdir -p "/tmp/mlton-svn-20090329/basis-library/config/c/powerpc-aix" /bin/cp -fpR runtime/gen/c-types.sml \ basis-library/config/c/powerpc-aix/c-types.sml /bin/cp -fpR runtime/gen/basis-ffi.sml \ basis-library/primitive/basis-ffi.sml /bin/cp -fpR runtime/bytecode/opcodes "/tmp/mlton-svn-20090329/build/lib/" /bin/cp -fpR runtime/*.h "/tmp/mlton-svn-20090329/build/lib/include/" mv "/tmp/mlton-svn-20090329/build/lib/include/c-types.h" "/tmp/mlton-svn-20090329/build/lib/self/include" for d in basis basis/Real basis/Word gc platform util; do \ mkdir -p "/tmp/mlton-svn-20090329/build/lib/include/$d"; \ /bin/cp -fpR runtime/$d/*.h "/tmp/mlton-svn-20090329/build/lib/include/$d"; \ done /bin/cp -fpR runtime/bytecode/interpret.h "/tmp/mlton-svn-20090329/build/lib/include" for x in "/tmp/mlton-svn-20090329/build/lib"/"self"/*.a; do ranlib "$x"; done gmake -C "/tmp/mlton-svn-20090329/mlton" gmake[2]: Entering directory `/tmp/mlton-svn-20090329/mlton' rm -f upgrade-basis.sml gmake upgrade-basis.sml Error: mlton.cm 0.0. File upgrade-basis.sml does not exist. gmake[3]: Entering directory `/tmp/mlton-svn-20090329/mlton' "/tmp/mlton-svn-20090329/bin/upgrade-basis" '/tmp/mlton-svn-20090329/build/bin:/tmp/mlton-svn-20090329/build/bin:/tmp/mlton-svn-20090329/build/bin:/tmp/mlton-svn-20090329/bin:/tmp/mlton-svn-20090329/build/bin:/tmp/mlton-svn-20090329/bin:/home/emil/local/bin:/home/emil/local/32bit/bin:/usr/java6_64/bin:/home/emil/local/scala/bin:/home/emil/local/mlton/bin:/home/emil/local/32bit/smlnj/bin:/home/emil/local/32bit/mlton/bin:/home/emil/local/32bit/ghc/bin:/home/emil/local/32bit/ocaml/bin:/usr/vac/bin:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin' "powerpc" "aix" >upgrade-basis.sml ld: 0711-224 WARNING: Duplicate symbol: .fesetround ld: 0711-224 WARNING: Duplicate symbol: .fegetround ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information. gmake[3]: Leaving directory `/tmp/mlton-svn-20090329/mlton' Compiling mlton (takes a while) mlton @MLton ram-slop 0.7 gc-summary -- -target self -verbose 2 -output "mlton-compile" mlton-stubs.cm MLton starting MLton MLTONVERSION (built Fri Apr 03 11:23:05 2009 on atvies21mx) created this file on Tue Apr 07 17:03:26 2009. Do not edit this file. Flag settings: align: 4 atMLtons: (mlton-compile, @MLton, --) chunk: coalesce 4096 closureConvertGlobalize: true closureConvertShrink: true codegen: c contifyIntoMain: false debug: false defaultChar: char8 defaultWideChar: widechar32 defaultInt: int32 defaultReal: real64 defaultWord: word32 diag passes: [] drop passes: [] elaborate allowConstant (default): false elaborate allowConstant (enabled): true elaborate allowFFI (default): false elaborate allowFFI (enabled): true elaborate allowPrim (default): false elaborate allowPrim (enabled): true elaborate allowOverload (default): false elaborate allowOverload (enabled): true elaborate allowRebindEquals (default): false elaborate allowRebindEquals (enabled): true elaborate deadCode (default): false elaborate deadCode (enabled): true elaborate forceUsed (default): false elaborate forceUsed (enabled): true elaborate ffiStr (default): elaborate ffiStr (enabled): true elaborate nonexhaustiveExnMatch (default): default elaborate nonexhaustiveExnMatch (enabled): true elaborate nonexhaustiveMatch (default): warn elaborate nonexhaustiveMatch (enabled): true elaborate redundantMatch (default): warn elaborate redundantMatch (enabled): true elaborate sequenceNonUnit (default): ignore elaborate sequenceNonUnit (enabled): true elaborate warnUnused (default): false elaborate warnUnused (enabled): true elaborate only: false emit main: true export header: None exn history: false generated output format: executable gc check: Limit indentation: 3 inlineIntoMain: true inlineLeafA: {loops = true, repeat = true, size = Some 20} inlineLeafB: {loops = true, repeat = true, size = Some 40} inlineNonRec: {small = 60, product = 320} input file: mlton-stubs keep CoreML: false keep def use: true keep dot: false keep Machine: false keep passes: [] keep RSSA: false keep SSA: false keep SSA2: false keep SXML: false keep XML: false extra_: false lib dir: /home/emil/local/mlton-20090329/lib/mlton lib target dir: /home/emil/local/mlton-20090329/lib/mlton/self loop passes: 1 mark cards: true max function size: 10000 mlb path vars: [{var = MLTON_ROOT, path = $(LIB_MLTON_DIR)/sml}, {var = SML_LIB, path = $(LIB_MLTON_DIR)/sml}] native commented: 0 native live stack: false native optimize: 1 native move hoist: true native copy prop: true native copy prop cutoff: 1000 native cutoff: 100 native live transfer: 8 native shuffle: true native ieee fp: false native split: Some 20000 optimizationPasses: [, , , ] polyvariance: Some {hofo = true, rounds = 2, small = 30, product = 300} prefer abs paths: false prof passes: [] profile: None profile branch: false profile C: [] profile IL: ProfileSource profile include/exclude: [(Seq [Star [.], Or [Seq [Seq [[$], [(], [S], [M], [L], [_], [L], [I], [B], [)]]]], Star [.]], false)] profile raise: false profile stack: false profile val: false show basis: None show def-use: None show types: true target: self target arch: PowerPC target OS: AIX type check: false verbosity: Pass warn unrecognized annotation: true zone cut depth: 100 Compile SML starting pre codegen starting parseAndElaborate starting parseAndElaborate finished in 176.84 + 0.00 (0% GC) deadCode starting deadCode finished in 0.46 + 0.00 (0% GC) defunctorize starting defunctorize finished in 9.25 + 0.00 (0% GC) xmlSimplify starting typeCheck starting typeCheck finished in 5.97 + 0.00 (0% GC) xmlShrink starting xmlShrink finished in 4.12 + 0.00 (0% GC) xmlSimplifyTypes starting xmlSimplifyTypes finished in 1.52 + 0.00 (0% GC) typeCheck starting typeCheck finished in 4.75 + 0.00 (0% GC) xmlSimplify finished in 16.37 + 0.00 (0% GC) monomorphise starting monomorphise finished in 16.05 + 0.00 (0% GC) sxmlSimplify starting typeCheck starting typeCheck finished in 9.91 + 0.00 (0% GC) sxmlShrink1 starting sxmlShrink1 finished in 6.00 + 0.00 (0% GC) implementSuffix starting implementSuffix finished in 0.24 + 0.00 (0% GC) sxmlShrink2 starting sxmlShrink2 finished in 4.87 + 0.00 (0% GC) implementExceptions starting implementExceptions finished in 0.60 + 0.00 (0% GC) sxmlShrink3 starting sxmlShrink3 finished in 10.61 + 0.00 (0% GC) polyvariance starting duplicate1 starting duplicate1 finished in 7.93 + 0.00 (0% GC) duplicate2 starting duplicate2 finished in 7.08 + 0.00 (0% GC) polyvariance finished in 15.01 + 0.00 (0% GC) sxmlShrink4 starting sxmlShrink4 finished in 6.71 + 0.00 (0% GC) typeCheck starting typeCheck finished in 3.23 + 0.00 (0% GC) sxmlSimplify finished in 57.18 + 0.00 (0% GC) closureConvert starting flow analysis starting flow analysis finished in 4.83 + 0.00 (0% GC) free variables starting free variables finished in 1.35 + 0.00 (0% GC) globalize starting globalize finished in 0.49 + 0.00 (0% GC) convert starting convert finished in 28.46 + 0.00 (0% GC) closureConvert finished in 36.08 + 0.00 (0% GC) ssaSimplify starting typeCheck starting typeCheck finished in 9.32 + 0.00 (0% GC) removeUnused1 starting removeUnused1 finished in 13.32 + 0.00 (0% GC) introduceLoops1 starting introduceLoops1 finished in 0.17 + 0.00 (0% GC) loopInvariant1 starting loopInvariant1 finished in 6.22 + 0.00 (0% GC) inlineLeaf1 starting inlineLeaf1 finished in 8.21 + 0.00 (0% GC) inlineLeaf2 starting inlineLeaf2 finished in 10.10 + 0.00 (0% GC) contify1 starting contify1 finished in 4.81 + 0.00 (0% GC) localFlatten1 starting localFlatten1 finished in 5.24 + 0.00 (0% GC) constantPropagation starting constantPropagation finished in 12.03 + 0.00 (0% GC) useless starting useless finished in 20.24 + 0.00 (0% GC) removeUnused2 starting removeUnused2 finished in 11.22 + 0.00 (0% GC) simplifyTypes starting simplifyTypes finished in 4.35 + 0.00 (0% GC) polyEqual starting polyEqual finished in 0.41 + 0.00 (0% GC) polyHash starting polyHash finished in 0.30 + 0.00 (0% GC) introduceLoops2 starting introduceLoops2 finished in 0.04 + 0.00 (0% GC) loopInvariant2 starting loopInvariant2 finished in 2.63 + 0.00 (0% GC) contify2 starting contify2 finished in 2.24 + 0.00 (0% GC) inlineNonRecursive starting inlineNonRecursive finished in 6.47 + 0.00 (0% GC) localFlatten2 starting localFlatten2 finished in 4.22 + 0.00 (0% GC) removeUnused3 starting removeUnused3 finished in 8.24 + 0.00 (0% GC) contify3 starting contify3 finished in 3.00 + 0.00 (0% GC) introduceLoops3 starting introduceLoops3 finished in 0.07 + 0.00 (0% GC) loopInvariant3 starting loopInvariant3 finished in 3.75 + 0.00 (0% GC) localRef starting localRef finished in 13.32 + 0.00 (0% GC) flatten starting flatten finished in 7.02 + 0.00 (0% GC) localFlatten3 starting localFlatten3 finished in 4.96 + 0.00 (0% GC) commonArg starting commonArg finished in 6.04 + 0.00 (0% GC) commonSubexp starting commonSubexp finished in 8.31 + 0.00 (0% GC) commonBlock starting commonBlock finished in 3.29 + 0.00 (0% GC) redundantTests starting redundantTests finished in 5.07 + 0.00 (0% GC) redundant starting redundant finished in 3.27 + 0.00 (0% GC) knownCase starting knownCase finished in 16.26 + 0.00 (0% GC) removeUnused4 starting removeUnused4 finished in 6.29 + 0.00 (0% GC) orderFunctions1 starting orderFunctions1 finished in 1.24 + 0.00 (0% GC) typeCheck starting typeCheck finished in 5.29 + 0.00 (0% GC) ssaSimplify finished in 216.99 + 0.00 (0% GC) toSsa2 starting toSsa2 finished in 4.00 + 0.00 (0% GC) ssa2Simplify starting typeCheck starting typeCheck finished in 6.26 + 0.00 (0% GC) deepFlatten starting deepFlatten finished in 11.64 + 0.00 (0% GC) refFlatten starting refFlatten finished in 12.77 + 0.00 (0% GC) removeUnused5 starting removeUnused5 finished in 6.61 + 0.00 (0% GC) zone starting zone finished in 0.01 + 0.00 (0% GC) orderFunctions2 starting orderFunctions2 finished in 1.08 + 0.00 (0% GC) typeCheck starting typeCheck finished in 5.29 + 0.00 (0% GC) ssa2Simplify finished in 43.66 + 0.00 (0% GC) backend starting toRssa starting toRssa finished in 6.77 + 0.00 (0% GC) rssaSimplify starting rssaShrink1 starting rssaShrink1 finished in 7.04 + 0.00 (0% GC) insertLimitChecks starting insertLimitChecks finished in 3.99 + 0.00 (0% GC) insertSignalChecks starting insertSignalChecks finished in 0.00 + 0.00 (0% GC) implementHandlers starting implementHandlers finished in 0.48 + 0.00 (0% GC) rssaShrink2 starting rssaShrink2 finished in 4.45 + 0.00 (0% GC) implementProfiling starting implementProfiling finished in 0.00 + 0.00 (0% GC) rssaOrderFunctions starting rssaOrderFunctions finished in 1.83 + 0.00 (0% GC) rssaSimplify finished in 18.25 + 0.00 (0% GC) toMachine starting toMachine finished in 72.03 + 0.00 (0% GC) backend finished in 97.05 + 0.00 (0% GC) pre codegen finished in 675.97 + 0.00 (0% GC) C code gen starting C code gen finished in 40.07 + 0.00 (0% GC) Compile SML finished in 716.17 + 0.00 (0% GC) Compile and Assemble starting gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filejHOylm.o /tmp/file1yhVuE.260.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileCTuafm.o /tmp/file4ev6vJ.259.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileXQneQn.o /tmp/file1VDRpk.258.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file28iz97.o /tmp/file5lYEFZ.257.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filebrWcDg.o /tmp/fileRKjULi.256.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filewEcyZn.o /tmp/file7CU97m.255.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileZLiQl5.o /tmp/fileIUbPpz.254.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file2wDTLx.o /tmp/fileraXWPQ.253.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filefousBV.o /tmp/filetwvSl6.252.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filexNfnoG.o /tmp/file4jTu5h.251.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileWTmNXT.o /tmp/fileZZZ7gu.250.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileXhxSvh.o /tmp/fileP22XLE.249.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file0FzM9F.o /tmp/file0eFEhv.248.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileX4MUvc.o /tmp/fileZnTE5X.247.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filedolj3I.o /tmp/filein63JT.246.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file25fufU.o /tmp/file7EwkCw.245.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileHEdQt0.o /tmp/filekSwxs3.244.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileEg5FPQ.o /tmp/fileb2b6S0.243.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileP0d7y4.o /tmp/filefxbmxu.242.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file1Uq8EK.o /tmp/file9mKFRC.241.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filei5KqdI.o /tmp/fileNpJFQY.240.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileZy0wCE.o /tmp/fileUQmtt8.239.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filefHTA0S.o /tmp/fileCJ55SM.238.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filefQB2HK.o /tmp/fileGshEfu.237.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file34GthE.o /tmp/fileV7uMD6.236.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filey82T5M.o /tmp/fileF2LzCi.235.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file1OmGMR.o /tmp/filerMrZMH.234.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filezXfFzL.o /tmp/filewPD2jg.233.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filewafKv3.o /tmp/fileugqYOf.232.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filerYQbbM.o /tmp/fileS4Afrf.231.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filerAzARc.o /tmp/fileFZeedC.230.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileFmzGZ9.o /tmp/filemQ2DTm.229.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileoEnK70.o /tmp/file36XRvq.228.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filewKmlm9.o /tmp/fileOEeAxL.227.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileLXxi28.o /tmp/file7LZGJd.226.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileRkdupf.o /tmp/fileTBT0x0.225.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileKxN2Zk.o /tmp/fileC8oCDH.224.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file2B3eG4.o /tmp/filec3HG84.223.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filefYgQAQ.o /tmp/fileZV4AEZ.222.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileV9G84i.o /tmp/fileIVAh1N.221.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileOT52xk.o /tmp/file1KptiG.220.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileCbgath.o /tmp/fileM0lHKs.219.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file7fd9vl.o /tmp/file4tv5Vf.218.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filebgjJaG.o /tmp/filecP0wTP.217.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filexe2d7i.o /tmp/filesjltFR.216.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filebpI5xt.o /tmp/fileZo8sro.215.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileYK0QLS.o /tmp/filecojMCN.214.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filei7Rks7.o /tmp/file7A3JQW.213.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileTCzoFs.o /tmp/fileV4A4Vi.212.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filedpmzse.o /tmp/file32MA74.211.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileuPDrLt.o /tmp/filexl1Exw.210.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileVGfSTX.o /tmp/fileysCLdF.209.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filewmfgaJ.o /tmp/file63j9bV.208.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filehUP51a.o /tmp/filej7UAP0.207.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileteMFP0.o /tmp/fileI8Vevy.206.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filedcmmLM.o /tmp/filezJXPUo.205.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file47WQbP.o /tmp/fileBo9F5X.204.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileVfZcpx.o /tmp/filebV7FKk.203.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileFuTk3Q.o /tmp/filev85Qsx.202.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileNtbvn0.o /tmp/fileoRrqR0.201.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file6b7tbV.o /tmp/fileZXfokG.200.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileo0X8lq.o /tmp/fileVqpo5y.199.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file7RXO4B.o /tmp/fileLkxwlb.198.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileQcpVf8.o /tmp/fileyDQ610.197.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filedouc5q.o /tmp/filejpdtRf.196.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filexgkZdH.o /tmp/filezlqfKm.195.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileSZFSEa.o /tmp/filePENkwM.194.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filehLHHKj.o /tmp/fileFGvupB.193.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileTYo1fq.o /tmp/filec53km4.192.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileFvpfx0.o /tmp/file0f5DnN.191.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileUu3Rzf.o /tmp/fileJP8jf8.190.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file4yT24d.o /tmp/file3KxVFT.189.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filexZt5uT.o /tmp/fileBnjNWM.188.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileXMFuDa.o /tmp/fileBXHwP0.187.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file19wHEo.o /tmp/fileBT7lzc.186.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileOWWSJf.o /tmp/filenhchwe.185.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileAsWo55.o /tmp/filewwpirr.184.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileXnDjyu.o /tmp/filek7ZnWm.183.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileJAEc0v.o /tmp/fileqAua96.182.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file50Eq8g.o /tmp/fileuio5JU.181.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileRjMsj1.o /tmp/filebAntEu.180.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileByaoEP.o /tmp/fileu6or00.179.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileuTx16M.o /tmp/fileZolOnU.178.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileOIDBFE.o /tmp/file3WdaiC.177.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filepExBns.o /tmp/fileCgFtd5.176.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileMZzznG.o /tmp/filedqmICQ.175.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileTOKe8E.o /tmp/filezKKp9A.174.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filecEX3T6.o /tmp/filemvZvLe.173.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filecq5oWG.o /tmp/filePyNoKT.172.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file5cYNM4.o /tmp/fileRw8JFi.171.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filegd11PX.o /tmp/filefumx9w.170.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileL1UAC3.o /tmp/file02QLbk.169.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filezZTY9s.o /tmp/filea2TZuA.168.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileGOycgy.o /tmp/filetBIcdq.167.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filePZ5Yvi.o /tmp/filebsn81C.166.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file9IFH7n.o /tmp/filezdjC40.165.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileXjDqoL.o /tmp/filesgxi4R.164.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileXyf5T3.o /tmp/file00lHXX.163.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileh0PakC.o /tmp/fileJJ3qnO.162.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileXixc1A.o /tmp/file0CCUh8.161.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filehh66l2.o /tmp/fileb8ArHG.160.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filez05sck.o /tmp/fileLaNsQG.159.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileCK7deQ.o /tmp/file2JPxSP.158.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileB2zXHu.o /tmp/filey0i6vs.157.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filedssQ3Q.o /tmp/filegewDV7.156.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileUWdN3r.o /tmp/filel8KfJU.155.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filepNHEXr.o /tmp/fileXWe68l.154.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filed5LjNs.o /tmp/filecwph2J.153.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileT2wn7X.o /tmp/filesjiC9Z.152.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileFBQE1w.o /tmp/fileuy5aFc.151.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileNkl8Bi.o /tmp/fileHUJzEC.150.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filek0VkAr.o /tmp/fileIe1TXT.149.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileGN5mKC.o /tmp/fileYkdIrT.148.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filevAd9YB.o /tmp/fileX4TQNj.147.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file9RVUyO.o /tmp/filesQhv3n.146.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filezD6RHQ.o /tmp/file3gxW5w.145.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file11TYff.o /tmp/fileJ6FtH2.144.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileWETFll.o /tmp/filej3DAgW.143.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileSyRM7K.o /tmp/filekxByHk.142.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileJh8EwE.o /tmp/fileIrOJXr.141.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileFOfAVc.o /tmp/filelncxWe.140.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filebghOF8.o /tmp/fileEqRE0L.139.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileEVlZyH.o /tmp/fileCebv8k.138.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filemi2Fb0.o /tmp/fileOJyK2H.137.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filePzt20q.o /tmp/filennMVVl.136.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filetyB9xL.o /tmp/fileZWXTam.135.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileJL0aGx.o /tmp/filergDmYw.134.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileKQFoJP.o /tmp/fileevf6Ob.133.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileGObBPX.o /tmp/fileOttcsL.132.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file9k3EpY.o /tmp/fileTyZKB4.131.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file30Zcj7.o /tmp/filevuEw3E.130.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileXGhqxS.o /tmp/fileOytPfq.129.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileb1b8CZ.o /tmp/fileLFHDgX.128.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileH8Gw9j.o /tmp/fileFqqYNV.127.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file3MMX9W.o /tmp/file0zpIhb.126.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file7Kd4Te.o /tmp/fileXlYTbQ.125.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filedBzWou.o /tmp/file5QhGCa.124.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filegOblJB.o /tmp/fileJ2Lq9j.123.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file0cgHbv.o /tmp/fileU2lY6v.122.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileNrK1bE.o /tmp/fileWjiaPH.121.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filenxZItU.o /tmp/filerGqIsS.120.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileXsVokx.o /tmp/fileXmbGxi.119.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileSlrKjP.o /tmp/fileTe9jBa.118.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileDOm3Ia.o /tmp/fileRha2xU.117.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filep4SbLw.o /tmp/fileWJKh3p.116.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileGJSall.o /tmp/fileXLIXVU.115.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file324IBd.o /tmp/fileWA5oMd.114.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filey1Lz7e.o /tmp/filescfwY6.113.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileP6Y2Kx.o /tmp/fileTJlkeE.112.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileHwFtRS.o /tmp/fileV80zhA.111.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileqCDkh8.o /tmp/fileBNbNR2.110.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileGy3IgW.o /tmp/fileLKhthP.109.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileqZNvGk.o /tmp/fileHb9LGU.108.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileI0eMvV.o /tmp/filec5H0gB.107.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filetYjlMK.o /tmp/fileXz3gNv.106.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileD0HdRR.o /tmp/filePxwiZ4.105.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileFhdgzH.o /tmp/file0S2TWs.104.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileW3b7Zk.o /tmp/fileNnpzOR.103.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileSK1jOH.o /tmp/fileSZZUe9.102.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filexfRtw8.o /tmp/fileB0pubB.101.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file6tGW3q.o /tmp/fileRdIDb6.100.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileb3O6ka.o /tmp/fileJW7RDq.99.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file03fiGs.o /tmp/file60liBa.98.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileMK0mz0.o /tmp/filegVjO4P.97.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file7owKLu.o /tmp/fileYOUknC.96.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filexDjx5i.o /tmp/fileRUIDrM.95.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileqP16la.o /tmp/fileduElfA.94.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filejdjrRq.o /tmp/fileMgJpoQ.93.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file1u3eIT.o /tmp/file4J5G5U.92.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file3vG7T0.o /tmp/fileKC7HNQ.91.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileCvTXho.o /tmp/fileBVn8wS.90.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file1naESO.o /tmp/fileAQeCMf.89.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file0nl9Qt.o /tmp/fileCNVUpv.88.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileSmC4KG.o /tmp/fileZl1onQ.87.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileJo2oau.o /tmp/fileaYUjhX.86.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filehux3bA.o /tmp/fileRaAjbc.85.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filegxDuKf.o /tmp/fileuodYPZ.84.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileN25zcj.o /tmp/fileRcBTKx.83.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filexUKsyG.o /tmp/fileXBEeBM.82.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileVf8pSa.o /tmp/fileViO1hy.81.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file0jFtNQ.o /tmp/filexvtqgU.80.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileJc7UuN.o /tmp/file3WFLLf.79.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filefEpBdo.o /tmp/fileJuN2gg.78.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filedAf9fR.o /tmp/filexHe2z7.77.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileRoRQKG.o /tmp/filek1ubrC.76.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileHODDbQ.o /tmp/filexip3qI.75.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileLPOeEr.o /tmp/filet4EOc2.74.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filehjpiX5.o /tmp/file1uf4B0.73.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileSQicC9.o /tmp/fileBo3WtJ.72.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filelTFU6q.o /tmp/fileotkJDp.71.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileSwhihW.o /tmp/fileTqlJEC.70.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileeebMKk.o /tmp/filem83Ges.69.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileRhvEUo.o /tmp/file9rjPB7.68.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileWYN5l5.o /tmp/fileYQlyIa.67.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filePjMVyW.o /tmp/fileLXRmp3.66.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filejdyv9Y.o /tmp/fileVcIQ6i.65.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filelrf6tl.o /tmp/file28kSKM.64.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileIJ9lw8.o /tmp/fileBi7TN3.63.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filefQqfoI.o /tmp/filen3MQAx.62.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileVNLxGE.o /tmp/fileCiJg5L.61.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileTPSf5p.o /tmp/file5e8d9e.60.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filee5H4VV.o /tmp/fileBiTBJe.59.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filex7ZNxS.o /tmp/file3y9rlf.58.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filex6dZ9S.o /tmp/fileJnr0kQ.57.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file7S3SVw.o /tmp/fileuL1UhR.56.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filescZc5m.o /tmp/filezbjH2s.55.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileSmw0Gw.o /tmp/fileg69Vge.54.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filePt95O0.o /tmp/fileXLBzRx.53.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileve51UR.o /tmp/fileIRS0b8.52.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileltQ6cW.o /tmp/fileT0kORO.51.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileAmDGLp.o /tmp/filedP3SeM.50.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filej2yODs.o /tmp/filenaL4ox.49.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filec9Psk1.o /tmp/fileARFGOr.48.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileQayTZ7.o /tmp/fileFfR2Pg.47.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filePvSUr8.o /tmp/fileB5t9B9.46.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileVYXsPG.o /tmp/file1vpR30.45.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileClvkhZ.o /tmp/file667BoN.44.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filetwVg8W.o /tmp/fileRAtfNL.43.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filefI8bF2.o /tmp/filen3yuDN.42.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file1UaqTC.o /tmp/filePKHWvh.41.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileCpQnvH.o /tmp/fileFhpSJQ.40.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileiBxOLZ.o /tmp/fileOu546I.39.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileFJ339x.o /tmp/fileH4NqlW.38.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file2QrXK6.o /tmp/fileVq62ZI.37.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileX3EgqW.o /tmp/fileVitlL0.36.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileLmyRNt.o /tmp/fileDXXNhG.35.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileJFF0E5.o /tmp/fileIY7Lqc.34.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileqx5jtc.o /tmp/fileoNJRMv.33.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filenaTioV.o /tmp/fileeNvuBP.32.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filefiEFcK.o /tmp/filehZbLz9.31.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file2fHxLx.o /tmp/filejipBas.30.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileXREgEo.o /tmp/fileA2IJH9.29.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filedzLklg.o /tmp/filebpNOg2.28.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileveakDk.o /tmp/filelglWKW.27.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filezPpryU.o /tmp/filea3Omrs.26.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileupz7h5.o /tmp/filexaUqbw.25.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileAcEkzS.o /tmp/fileT0ggf2.24.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileSmdSJt.o /tmp/file0HTiXR.23.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileBwYOu4.o /tmp/file6hwMah.22.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileVd9D9e.o /tmp/fileucx4nD.21.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filei6gKV8.o /tmp/file3DTCK8.20.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file4fkcKf.o /tmp/filexufUpX.19.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/file3otRAJ.o /tmp/filecTTJTf.18.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filehmqrKT.o /tmp/filekJliAJ.17.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileZ8aBlI.o /tmp/fileSrs7ZD.16.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileoy06XQ.o /tmp/file7cpZ6c.15.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filekM9Irm.o /tmp/filecc9TXX.14.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileZ5vtfQ.o /tmp/fileGPZnDG.13.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileqydZFT.o /tmp/filea5BwGP.12.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileTGtCdw.o /tmp/fileMUpxtI.11.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filehKWAz9.o /tmp/file3d9TCO.10.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileUIloWP.o /tmp/filerOfXa9.9.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileI89gwe.o /tmp/fileHodsHD.8.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filep8QjIP.o /tmp/fileikV46E.7.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileHbakkO.o /tmp/filegqCS33.6.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileXJlh9m.o /tmp/fileDxzH0A.5.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileaLesHS.o /tmp/fileB6dh60.4.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileZ9RmYZ.o /tmp/file5A5kiy.3.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filem0LuZz.o /tmp/filelFaw4Q.2.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/filejcZpYc.o /tmp/fileVrKhnR.1.c gcc -std=gnu99 -c \ -I/home/emil/local/mlton-20090329/lib/mlton/self/include \ -I/home/emil/local/include \ -I/home/emil/local/mlton-20090329/lib/mlton/include -O1 \ -fno-common -fno-strict-aliasing -fomit-frame-pointer -w -maix64 -o \ /tmp/fileVkAYNg.o /tmp/fileHkKC8w.0.c Compile and Assemble finished in 1085.43 + 0.00 (0% GC) Link starting gcc -o mlton-compile /tmp/filejHOylm.o /tmp/fileCTuafm.o \ /tmp/fileXQneQn.o /tmp/file28iz97.o /tmp/filebrWcDg.o \ /tmp/filewEcyZn.o /tmp/fileZLiQl5.o /tmp/file2wDTLx.o \ /tmp/filefousBV.o /tmp/filexNfnoG.o /tmp/fileWTmNXT.o \ /tmp/fileXhxSvh.o /tmp/file0FzM9F.o /tmp/fileX4MUvc.o \ /tmp/filedolj3I.o /tmp/file25fufU.o /tmp/fileHEdQt0.o \ /tmp/fileEg5FPQ.o /tmp/fileP0d7y4.o /tmp/file1Uq8EK.o \ /tmp/filei5KqdI.o /tmp/fileZy0wCE.o /tmp/filefHTA0S.o \ /tmp/filefQB2HK.o /tmp/file34GthE.o /tmp/filey82T5M.o \ /tmp/file1OmGMR.o /tmp/filezXfFzL.o /tmp/filewafKv3.o \ /tmp/filerYQbbM.o /tmp/filerAzARc.o /tmp/fileFmzGZ9.o \ /tmp/fileoEnK70.o /tmp/filewKmlm9.o /tmp/fileLXxi28.o \ /tmp/fileRkdupf.o /tmp/fileKxN2Zk.o /tmp/file2B3eG4.o \ /tmp/filefYgQAQ.o /tmp/fileV9G84i.o /tmp/fileOT52xk.o \ /tmp/fileCbgath.o /tmp/file7fd9vl.o /tmp/filebgjJaG.o \ /tmp/filexe2d7i.o /tmp/filebpI5xt.o /tmp/fileYK0QLS.o \ /tmp/filei7Rks7.o /tmp/fileTCzoFs.o /tmp/filedpmzse.o \ /tmp/fileuPDrLt.o /tmp/fileVGfSTX.o /tmp/filewmfgaJ.o \ /tmp/filehUP51a.o /tmp/fileteMFP0.o /tmp/filedcmmLM.o \ /tmp/file47WQbP.o /tmp/fileVfZcpx.o /tmp/fileFuTk3Q.o \ /tmp/fileNtbvn0.o /tmp/file6b7tbV.o /tmp/fileo0X8lq.o \ /tmp/file7RXO4B.o /tmp/fileQcpVf8.o /tmp/filedouc5q.o \ /tmp/filexgkZdH.o /tmp/fileSZFSEa.o /tmp/filehLHHKj.o \ /tmp/fileTYo1fq.o /tmp/fileFvpfx0.o /tmp/fileUu3Rzf.o \ /tmp/file4yT24d.o /tmp/filexZt5uT.o /tmp/fileXMFuDa.o \ /tmp/file19wHEo.o /tmp/fileOWWSJf.o /tmp/fileAsWo55.o \ /tmp/fileXnDjyu.o /tmp/fileJAEc0v.o /tmp/file50Eq8g.o \ /tmp/fileRjMsj1.o /tmp/fileByaoEP.o /tmp/fileuTx16M.o \ /tmp/fileOIDBFE.o /tmp/filepExBns.o /tmp/fileMZzznG.o \ /tmp/fileTOKe8E.o /tmp/filecEX3T6.o /tmp/filecq5oWG.o \ /tmp/file5cYNM4.o /tmp/filegd11PX.o /tmp/fileL1UAC3.o \ /tmp/filezZTY9s.o /tmp/fileGOycgy.o /tmp/filePZ5Yvi.o \ /tmp/file9IFH7n.o /tmp/fileXjDqoL.o /tmp/fileXyf5T3.o \ /tmp/fileh0PakC.o /tmp/fileXixc1A.o /tmp/filehh66l2.o \ /tmp/filez05sck.o /tmp/fileCK7deQ.o /tmp/fileB2zXHu.o \ /tmp/filedssQ3Q.o /tmp/fileUWdN3r.o /tmp/filepNHEXr.o \ /tmp/filed5LjNs.o /tmp/fileT2wn7X.o /tmp/fileFBQE1w.o \ /tmp/fileNkl8Bi.o /tmp/filek0VkAr.o /tmp/fileGN5mKC.o \ /tmp/filevAd9YB.o /tmp/file9RVUyO.o /tmp/filezD6RHQ.o \ /tmp/file11TYff.o /tmp/fileWETFll.o /tmp/fileSyRM7K.o \ /tmp/fileJh8EwE.o /tmp/fileFOfAVc.o /tmp/filebghOF8.o \ /tmp/fileEVlZyH.o /tmp/filemi2Fb0.o /tmp/filePzt20q.o \ /tmp/filetyB9xL.o /tmp/fileJL0aGx.o /tmp/fileKQFoJP.o \ /tmp/fileGObBPX.o /tmp/file9k3EpY.o /tmp/file30Zcj7.o \ /tmp/fileXGhqxS.o /tmp/fileb1b8CZ.o /tmp/fileH8Gw9j.o \ /tmp/file3MMX9W.o /tmp/file7Kd4Te.o /tmp/filedBzWou.o \ /tmp/filegOblJB.o /tmp/file0cgHbv.o /tmp/fileNrK1bE.o \ /tmp/filenxZItU.o /tmp/fileXsVokx.o /tmp/fileSlrKjP.o \ /tmp/fileDOm3Ia.o /tmp/filep4SbLw.o /tmp/fileGJSall.o \ /tmp/file324IBd.o /tmp/filey1Lz7e.o /tmp/fileP6Y2Kx.o \ /tmp/fileHwFtRS.o /tmp/fileqCDkh8.o /tmp/fileGy3IgW.o \ /tmp/fileqZNvGk.o /tmp/fileI0eMvV.o /tmp/filetYjlMK.o \ /tmp/fileD0HdRR.o /tmp/fileFhdgzH.o /tmp/fileW3b7Zk.o \ /tmp/fileSK1jOH.o /tmp/filexfRtw8.o /tmp/file6tGW3q.o \ /tmp/fileb3O6ka.o /tmp/file03fiGs.o /tmp/fileMK0mz0.o \ /tmp/file7owKLu.o /tmp/filexDjx5i.o /tmp/fileqP16la.o \ /tmp/filejdjrRq.o /tmp/file1u3eIT.o /tmp/file3vG7T0.o \ /tmp/fileCvTXho.o /tmp/file1naESO.o /tmp/file0nl9Qt.o \ /tmp/fileSmC4KG.o /tmp/fileJo2oau.o /tmp/filehux3bA.o \ /tmp/filegxDuKf.o /tmp/fileN25zcj.o /tmp/filexUKsyG.o \ /tmp/fileVf8pSa.o /tmp/file0jFtNQ.o /tmp/fileJc7UuN.o \ /tmp/filefEpBdo.o /tmp/filedAf9fR.o /tmp/fileRoRQKG.o \ /tmp/fileHODDbQ.o /tmp/fileLPOeEr.o /tmp/filehjpiX5.o \ /tmp/fileSQicC9.o /tmp/filelTFU6q.o /tmp/fileSwhihW.o \ /tmp/fileeebMKk.o /tmp/fileRhvEUo.o /tmp/fileWYN5l5.o \ /tmp/filePjMVyW.o /tmp/filejdyv9Y.o /tmp/filelrf6tl.o \ /tmp/fileIJ9lw8.o /tmp/filefQqfoI.o /tmp/fileVNLxGE.o \ /tmp/fileTPSf5p.o /tmp/filee5H4VV.o /tmp/filex7ZNxS.o \ /tmp/filex6dZ9S.o /tmp/file7S3SVw.o /tmp/filescZc5m.o \ /tmp/fileSmw0Gw.o /tmp/filePt95O0.o /tmp/fileve51UR.o \ /tmp/fileltQ6cW.o /tmp/fileAmDGLp.o /tmp/filej2yODs.o \ /tmp/filec9Psk1.o /tmp/fileQayTZ7.o /tmp/filePvSUr8.o \ /tmp/fileVYXsPG.o /tmp/fileClvkhZ.o /tmp/filetwVg8W.o \ /tmp/filefI8bF2.o /tmp/file1UaqTC.o /tmp/fileCpQnvH.o \ /tmp/fileiBxOLZ.o /tmp/fileFJ339x.o /tmp/file2QrXK6.o \ /tmp/fileX3EgqW.o /tmp/fileLmyRNt.o /tmp/fileJFF0E5.o \ /tmp/fileqx5jtc.o /tmp/filenaTioV.o /tmp/filefiEFcK.o \ /tmp/file2fHxLx.o /tmp/fileXREgEo.o /tmp/filedzLklg.o \ /tmp/fileveakDk.o /tmp/filezPpryU.o /tmp/fileupz7h5.o \ /tmp/fileAcEkzS.o /tmp/fileSmdSJt.o /tmp/fileBwYOu4.o \ /tmp/fileVd9D9e.o /tmp/filei6gKV8.o /tmp/file4fkcKf.o \ /tmp/file3otRAJ.o /tmp/filehmqrKT.o /tmp/fileZ8aBlI.o \ /tmp/fileoy06XQ.o /tmp/filekM9Irm.o /tmp/fileZ5vtfQ.o \ /tmp/fileqydZFT.o /tmp/fileTGtCdw.o /tmp/filehKWAz9.o \ /tmp/fileUIloWP.o /tmp/fileI89gwe.o /tmp/filep8QjIP.o \ /tmp/fileHbakkO.o /tmp/fileXJlh9m.o /tmp/fileaLesHS.o \ /tmp/fileZ9RmYZ.o /tmp/filem0LuZz.o /tmp/filejcZpYc.o \ /tmp/fileVkAYNg.o \ -L/home/emil/local/mlton-20090329/lib/mlton/self -lmlton \ -lgdtoa -L/home/emil/local/lib -lm -lgmp -maix64 ld: 0711-224 WARNING: Duplicate symbol: .fesetround ld: 0711-224 WARNING: Duplicate symbol: .fegetround ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information. Link finished in 0.41 + 0.00 (0% GC) MLton finished in 1803.16 + 0.00 (0% GC) GC type time ms number bytes bytes/sec ------------- ------- ------- --------------- --------------- copying 89,890 34 8,813,881,520 98,051,856 mark-compact 0 0 0 - minor 2 39 44,400 22,200,000 total time: 717,955 ms total GC time: 141,633 ms (19.7%) max pause time: 18,512 ms total bytes allocated: 60,582,803,516 bytes max bytes live: 1,175,724,680 bytes max heap size: 6,012,952,576 bytes max stack size: 27,557,888 bytes num cards marked: 75 bytes scanned: 1,077,888 bytes bytes hash consed: 0 bytes gmake[2]: Leaving directory `/tmp/mlton-svn-20090329/mlton' /bin/cp -fpR "/tmp/mlton-svn-20090329/mlton/mlton-compile" "/tmp/mlton-svn-20090329/build/lib/" Making world. gmake basis-no-check gmake[2]: Entering directory `/tmp/mlton-svn-20090329' mkdir -p "/tmp/mlton-svn-20090329/build/lib/sml" rm -rf "/tmp/mlton-svn-20090329/build/lib/sml/basis" /bin/cp -fpR "/tmp/mlton-svn-20090329/basis-library/." "/tmp/mlton-svn-20090329/build/lib/sml/basis" find "/tmp/mlton-svn-20090329/build/lib/sml/basis" -type d -name .svn | xargs rm -rf find "/tmp/mlton-svn-20090329/build/lib/sml/basis" -type f -name .ignore | xargs rm -rf gmake[2]: Leaving directory `/tmp/mlton-svn-20090329' "/tmp/mlton-svn-20090329/build/lib/mlton-compile" @MLton -- "/tmp/mlton-svn-20090329/build/lib/world" /bin/cp -fpR bin/mlton-script "/tmp/mlton-svn-20090329/build/bin/mlton" chmod a+x "/tmp/mlton-svn-20090329/build/bin/mlton" /bin/cp -fpR "/tmp/mlton-svn-20090329/bin/platform" "/tmp/mlton-svn-20090329/build/lib" /bin/cp -fpR "/tmp/mlton-svn-20090329/bin/static-library" "/tmp/mlton-svn-20090329/build/lib" touch "/tmp/mlton-svn-20090329/build/lib/mlb-path-map" ( echo 'MLTON_ROOT $(LIB_MLTON_DIR)/sml'; \ echo 'SML_LIB $(LIB_MLTON_DIR)/sml'; ) \ >>"/tmp/mlton-svn-20090329/build/lib/mlb-path-map.tmp" mv "/tmp/mlton-svn-20090329/build/lib/mlb-path-map.tmp" "/tmp/mlton-svn-20090329/build/lib/mlb-path-map" touch "/tmp/mlton-svn-20090329/build/lib/target-map" ( echo 'self powerpc aix'; \ sed '/self/d' <"/tmp/mlton-svn-20090329/build/lib/target-map" ) \ >>"/tmp/mlton-svn-20090329/build/lib/target-map.tmp" mv "/tmp/mlton-svn-20090329/build/lib/target-map.tmp" "/tmp/mlton-svn-20090329/build/lib/target-map" Creating constants file. "/tmp/mlton-svn-20090329/build/bin/mlton" -build-constants true >tmp.c "/tmp/mlton-svn-20090329/build/bin/mlton" -output tmp tmp.c ./tmp >"/tmp/mlton-svn-20090329/build/lib/self/constants" rm -f tmp tmp.c gmake libraries-no-check gmake[2]: Entering directory `/tmp/mlton-svn-20090329' mkdir -p "/tmp/mlton-svn-20090329/build/lib/sml" cd "/tmp/mlton-svn-20090329/build/lib/sml" && rm -rf ckit-lib cml mlrisc-lib mlnlffi-lib mlyacc-lib smlnj-lib gmake -C "/tmp/mlton-svn-20090329/lib/ckit-lib" gmake[3]: Entering directory `/tmp/mlton-svn-20090329/lib/ckit-lib' rm -rf ckit gzip -dc ckit.tgz | tar xf - chmod -R a+r ckit chmod -R g-s ckit chmod a-x ckit/src/ast/simplify-assign-ops.sml patch -s -p0 < ckit.patch mkdir: 0653-358 Cannot create ckit. ckit: Do not specify an existing file. mkdir: 0653-358 Cannot create ckit. ckit: Do not specify an existing file. mkdir: 0653-358 Cannot create ckit. ckit: Do not specify an existing file. mkdir: 0653-358 Cannot create ckit/src. ckit/src: Do not specify an existing file. gmake[3]: Leaving directory `/tmp/mlton-svn-20090329/lib/ckit-lib' gmake -C "/tmp/mlton-svn-20090329/lib/mlrisc-lib" gmake[3]: Entering directory `/tmp/mlton-svn-20090329/lib/mlrisc-lib' rm -rf MLRISC gzip -dc MLRISC.tgz | tar xf - chmod -R a+r MLRISC chmod -R g-s MLRISC patch -s -p0 < MLRISC.patch mkdir: 0653-358 Cannot create MLRISC. MLRISC: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC/cm. MLRISC/cm: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC. MLRISC: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC. MLRISC: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC/mlb. MLRISC/mlb: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC. MLRISC: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC/mlb. MLRISC/mlb: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC. MLRISC: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC/mlb. MLRISC/mlb: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC. MLRISC: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC/mlb. MLRISC/mlb: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC. MLRISC: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC/mlb. MLRISC/mlb: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC. MLRISC: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC/mlb. MLRISC/mlb: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC. MLRISC: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC/mlb. MLRISC/mlb: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC. MLRISC: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC/mlb. MLRISC/mlb: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC. MLRISC: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC/mlb. MLRISC/mlb: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC. MLRISC: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC/mlb. MLRISC/mlb: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC. MLRISC: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC/mlb. MLRISC/mlb: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC. MLRISC: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC/mlb. MLRISC/mlb: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC. MLRISC: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC/mlb. MLRISC/mlb: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC. MLRISC: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC/mlb. MLRISC/mlb: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC. MLRISC: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC/mlb. MLRISC/mlb: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC. MLRISC: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC/mlb. MLRISC/mlb: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC. MLRISC: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC. MLRISC: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC. MLRISC: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC/Tools. MLRISC/Tools: Do not specify an existing file. mkdir: 0653-358 Cannot create MLRISC/Tools/Parser. MLRISC/Tools/Parser: Do not specify an existing file. gmake[3]: Leaving directory `/tmp/mlton-svn-20090329/lib/mlrisc-lib' gmake -C "/tmp/mlton-svn-20090329/lib/smlnj-lib" gmake[3]: Entering directory `/tmp/mlton-svn-20090329/lib/smlnj-lib' rm -rf smlnj-lib gzip -dc smlnj-lib.tgz | tar xf - chmod -R a+r smlnj-lib chmod -R g-s smlnj-lib rm -f smlnj-lib/HTML/.cvsignore patch -s -p0 < smlnj-lib.patch mkdir: 0653-358 Cannot create smlnj-lib. smlnj-lib: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib/Controls. smlnj-lib/Controls: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib. smlnj-lib: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib/HashCons. smlnj-lib/HashCons: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib. smlnj-lib: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib/HTML. smlnj-lib/HTML: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib. smlnj-lib: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib/HTML. smlnj-lib/HTML: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib. smlnj-lib: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib/HTML. smlnj-lib/HTML: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib. smlnj-lib: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib/HTML. smlnj-lib/HTML: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib. smlnj-lib: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib/HTML. smlnj-lib/HTML: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib. smlnj-lib: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib/HTML. smlnj-lib/HTML: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib. smlnj-lib: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib/INet. smlnj-lib/INet: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib. smlnj-lib: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib/PP. smlnj-lib/PP: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib. smlnj-lib: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib/Reactive. smlnj-lib/Reactive: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib. smlnj-lib: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib. smlnj-lib: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib/RegExp. smlnj-lib/RegExp: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib. smlnj-lib: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib. smlnj-lib: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib/Unix. smlnj-lib/Unix: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib. smlnj-lib: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib/Util. smlnj-lib/Util: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib. smlnj-lib: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib/Util. smlnj-lib/Util: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib. smlnj-lib: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib/Util. smlnj-lib/Util: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib. smlnj-lib: Do not specify an existing file. mkdir: 0653-358 Cannot create smlnj-lib/Util. smlnj-lib/Util: Do not specify an existing file. mv smlnj-lib/LICENSE ../../doc/license/SMLNJ-LIB-LICENSE gmake[3]: Leaving directory `/tmp/mlton-svn-20090329/lib/smlnj-lib' /bin/cp -fpR "/tmp/mlton-svn-20090329/lib/cml/." "/tmp/mlton-svn-20090329/build/lib/sml/cml" /bin/cp -fpR "/tmp/mlton-svn-20090329/lib/ckit-lib/ckit/." "/tmp/mlton-svn-20090329/build/lib/sml/ckit-lib" /bin/cp -fpR "/tmp/mlton-svn-20090329/lib/mlnlffi/." "/tmp/mlton-svn-20090329/build/lib/sml/mlnlffi-lib" /bin/cp -fpR "/tmp/mlton-svn-20090329/lib/mlrisc-lib/MLRISC/." "/tmp/mlton-svn-20090329/build/lib/sml/mlrisc-lib" /bin/cp -fpR "/tmp/mlton-svn-20090329/lib/mlyacc/." "/tmp/mlton-svn-20090329/build/lib/sml/mlyacc-lib" /bin/cp -fpR "/tmp/mlton-svn-20090329/lib/smlnj-lib/smlnj-lib/." "/tmp/mlton-svn-20090329/build/lib/sml/smlnj-lib" find "/tmp/mlton-svn-20090329/build/lib/sml" -type d -name .cm | xargs rm -rf find "/tmp/mlton-svn-20090329/build/lib/sml" -type d -name .svn | xargs rm -rf find "/tmp/mlton-svn-20090329/build/lib/sml" -type f -name .ignore | xargs rm -rf gmake[2]: Leaving directory `/tmp/mlton-svn-20090329' for f in ckit-lib cml mlrisc-lib mlnlffi-lib mlyacc-lib smlnj-lib; do \ echo "Type checking $f library."; \ "/tmp/mlton-svn-20090329/build/bin/mlton" -disable-ann deadCode \ -stop tc \ '$(SML_LIB)/'"$f/$f.mlb" \ >/dev/null; \ done Type checking ckit-lib library. Type checking cml library. Type checking mlrisc-lib library. Type checking mlnlffi-lib library. Type checking mlyacc-lib library. Type checking smlnj-lib library. gmake -C "mllex" gmake[2]: Entering directory `/tmp/mlton-svn-20090329/mllex' Compiling mllex "mlton" -target self mllex.mlb ld: 0711-224 WARNING: Duplicate symbol: .fesetround ld: 0711-224 WARNING: Duplicate symbol: .fegetround ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information. ld: 0711-317 ERROR: Undefined symbol: .gdtoa__strtof ld: 0711-317 ERROR: Undefined symbol: .gdtoa__gdtoa ld: 0711-317 ERROR: Undefined symbol: .gdtoa__strtord ld: 0711-317 ERROR: Undefined symbol: .gdtoa__strtorf collect2: ld returned 8 exit status call to system failed with exit status 1: gcc -o mllex /tmp/filefaIyWT.o /tmp/fileZmQ1qQ.o /tmp/filetqgDpx.o /tmp/file5BK6di.o /tmp/filesgBvKj.o /tmp/fileM1RWOo.o -L/tmp/mlton-svn-20090329/build/lib/self -lmlton -lgdtoa -L/home/emil/local/lib -lm -lgmp -maix64 gmake[2]: *** [mllex] Error 1 gmake[2]: Leaving directory `/tmp/mlton-svn-20090329/mllex' gmake[1]: *** [tools] Error 2 gmake[1]: Leaving directory `/tmp/mlton-svn-20090329' gmake: *** [all-no-docs] Error 2 From adam at spicenitz.org Sun Apr 12 22:50:24 2009 From: adam at spicenitz.org (Adam Goode) Date: Sun Apr 12 22:50:35 2009 Subject: [MLton] ARM and setRoundingMode Message-ID: <49E2D2A0.6070607@spicenitz.org> Hi, I am bootstrapping MLton for Fedora ARM. Everything seems to be working well, but the target hardware is software floating point, which on ARM doesn't implement non-default IEEE rounding modes. According to http://www.standardml.org/Basis/ieee-float.html#SIG:IEEE_REAL.setRoundingMode:VAL if the hardware doesn't support a rounding mode, setRoundingMode could raise an exception for unsupported modes. This is detectable when fesetround returns a non-zero value. Should MLton do this? What exception should be used? It would be nice to know when setRoundingMode fails. Thanks, Adam -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 260 bytes Desc: OpenPGP digital signature Url : http://mlton.org/pipermail/mlton/attachments/20090413/c17586d8/signature.pgp From fluet at tti-c.org Mon Apr 13 10:20:52 2009 From: fluet at tti-c.org (Matthew Fluet) Date: Mon Apr 13 10:20:56 2009 Subject: [MLton] ARM and setRoundingMode In-Reply-To: <49E2D2A0.6070607@spicenitz.org> References: <49E2D2A0.6070607@spicenitz.org> Message-ID: On Mon, 13 Apr 2009, Adam Goode wrote: > I am bootstrapping MLton for Fedora ARM. Everything seems to be > working well, but the target hardware is software floating point, > which on ARM doesn't implement non-default IEEE rounding modes. > > According to > http://www.standardml.org/Basis/ieee-float.html#SIG:IEEE_REAL.setRoundingMode:VAL > if the hardware doesn't support a rounding mode, setRoundingMode > could raise an exception for unsupported modes. This is detectable > when fesetround returns a non-zero value. > > Should MLton do this? What exception should be used? It would > be nice to know when setRoundingMode fails. Agreed that an exception should be raised; though, since failing to support all of the rounding modes automatically makes an implementation non-conforming, I guess the Basis Library specification need not specify the exception. I looked at the source code for SML/NJ and for Poly/ML, and neither of them appear to have a code path for a failed setRoundingMode. It seems to me that there are two reasonable exceptions: General.Domain or OS.SysError ("inval", OS.syserror "inval") The latter seems better, because it indicates a system dependent error; General.Domain seems to be limited to mathematical functions. Although, the OS.SysError exception usually comes from an errno value, there are a few places where inval is raised directly. From ville at laurikari.net Tue Apr 14 00:49:13 2009 From: ville at laurikari.net (Ville Laurikari) Date: Tue Apr 14 00:49:20 2009 Subject: [MLton] Replacing Subversion with a DVCS Message-ID: <20090414074913.GA9494@laurikari.net> It seems to me that the MLton project would benefit from a distributed version control system. I'm sure most of use have already used some DVCS, so the major benefits to a typical open source project are hopefully clear. There would be the choice of tool, of course. There are a number of pretty good free systems nowadays, such as (in no particular order) Mercurial, Git, Bazaar, Darcs, and so on. We could just vote. We would probably still need some form of central location for "official upstream" code hosted on mlton.org, there is some amount of Subversion integration on the site and build scripts which would have to be updated, and so on. That's all some extra work there someone would have to do. I've actually been using "git svn" with MLton for a while. It helps a lot when I move patches around different machines, between work and home, recording work in progress, and so on. Based on the time patterns seen in Matthew's commits, I suspect he uses some tool on top of Subversion as well. Anyway, the purpose of this email is just to probe if we could come to a general understanding that this is a discussion worth starting. What do you think? -- http://laurikari.net/ville/ From wesley at terpstra.ca Tue Apr 14 08:23:09 2009 From: wesley at terpstra.ca (Wesley W. Terpstra) Date: Tue Apr 14 08:23:44 2009 Subject: [MLton] Replacing Subversion with a DVCS In-Reply-To: <20090414074913.GA9494@laurikari.net> References: <20090414074913.GA9494@laurikari.net> Message-ID: <162de7480904140823r7a76e490iaf4bc9dfea32fb22@mail.gmail.com> On Tue, Apr 14, 2009 at 9:49 AM, Ville Laurikari wrote: > It seems to me that the MLton project would benefit from a distributed > version control system. I don't think it's so important. MLton development is pretty slow at the moment and at least I've had no problems with using subversion. Don't fix it if it ain't broke? From jesper.louis.andersen at gmail.com Tue Apr 14 08:50:05 2009 From: jesper.louis.andersen at gmail.com (Jesper Louis Andersen) Date: Tue Apr 14 08:50:53 2009 Subject: [MLton] Replacing Subversion with a DVCS In-Reply-To: <162de7480904140823r7a76e490iaf4bc9dfea32fb22@mail.gmail.com> References: <20090414074913.GA9494@laurikari.net> <162de7480904140823r7a76e490iaf4bc9dfea32fb22@mail.gmail.com> Message-ID: <56a0a2840904140850i5a48f1f5m99a991a91a3d12cb@mail.gmail.com> >> It seems to me that the MLton project would benefit from a distributed >> version control system. > > I don't think it's so important. MLton development is pretty slow at > the moment and at least I've had no problems with using subversion. > Don't fix it if it ain't broke? Exactly. I wouldn't start a new project on Subversion though. I really like git for development these days. -- J. From ville at laurikari.net Tue Apr 14 09:51:08 2009 From: ville at laurikari.net (Ville Laurikari) Date: Tue Apr 14 09:51:13 2009 Subject: [MLton] Replacing Subversion with a DVCS In-Reply-To: <162de7480904140823r7a76e490iaf4bc9dfea32fb22@mail.gmail.com> References: <20090414074913.GA9494@laurikari.net> <162de7480904140823r7a76e490iaf4bc9dfea32fb22@mail.gmail.com> Message-ID: <20090414165108.GA31433@laurikari.net> On Tue, Apr 14, 2009 at 05:23:09PM +0200, Wesley W. Terpstra wrote: > On Tue, Apr 14, 2009 at 9:49 AM, Ville Laurikari wrote: > > It seems to me that the MLton project would benefit from a distributed > > version control system. > > I don't think it's so important. MLton development is pretty slow at > the moment and at least I've had no problems with using subversion. I wouldn't have asked if I didn't have any problems with using Subversion. Accessing mlton.org from some machines at work is quite cumbersome. Either I had to spend time setting up ssh tunnels to access mlton.org or work without version control. Luckily, I've recently discovered git-svn which solves this problem for me. > Don't fix it if it ain't broke? Depends on what constitutes "broken" and how much an improvement costs :) Subversion is bad enough that I would argue that switching to something better might make sense even for a one-foot-in-the-grave project such as MLton. Anyway, this was just a probe to see if there's any interest in this sort of thing. There appears to be none, so never mind... -- http://laurikari.net/ville/ From fluet at tti-c.org Tue Apr 14 19:27:02 2009 From: fluet at tti-c.org (Matthew Fluet) Date: Tue Apr 14 19:27:04 2009 Subject: [MLton] Re: [MLton-commit] r7082 In-Reply-To: References: Message-ID: On Tue, 14 Apr 2009, adam@mlton.org wrote: > Change IEEEReal.setRoundingMode to throw exception if setting the mode fails > > As per > http://www.standardml.org/Basis/ieee-float.html#SIG:IEEE_REAL.setRoundingMode:VAL > IEEEReal.setRoundingMode should probably throw an exception if > the hardware doesn't support it. This is common on ARM, which is only > guaranteed to support the default mode. > > This throws PosixError.inval, as suggested by > http://mlton.org/pipermail/mlton/2009-April/030535.html > > The MLB file had to be reordered a bit to define the exception > to be raised. ./bin/regression shows no regressions on x86_64. I'm pleased to see that the /basis-library/build/sources.mlb didn't need extensive reorganization. I had seen that posix/error.{sig,sml} was defined after real/IEEE-real.{sig,sml} and was afraid that there might be some non-trivial dependencies. From spoons at cmu.edu Wed Apr 15 09:01:26 2009 From: spoons at cmu.edu (Daniel Spoonhower) Date: Wed Apr 15 09:01:38 2009 Subject: [MLton] Replacing Subversion with a DVCS In-Reply-To: <20090414165108.GA31433@laurikari.net> References: <20090414074913.GA9494@laurikari.net> <162de7480904140823r7a76e490iaf4bc9dfea32fb22@mail.gmail.com> <20090414165108.GA31433@laurikari.net> Message-ID: <49E604D6.8040407@cmu.edu> Though I have yet to commit anything to the trunk, I also use "git svn" to access the repository and work with a branch. I also think it's worth considering a DVCS: though the trunk is relatively stable, there are a number of research projects based on MLton and it would be a useful way of sharing/distributing that work. --djs Ville Laurikari wrote: > On Tue, Apr 14, 2009 at 05:23:09PM +0200, Wesley W. Terpstra wrote: >> On Tue, Apr 14, 2009 at 9:49 AM, Ville Laurikari wrote: >>> It seems to me that the MLton project would benefit from a distributed >>> version control system. >> I don't think it's so important. MLton development is pretty slow at >> the moment and at least I've had no problems with using subversion. > > I wouldn't have asked if I didn't have any problems with using > Subversion. Accessing mlton.org from some machines at work is quite > cumbersome. Either I had to spend time setting up ssh tunnels to > access mlton.org or work without version control. > > Luckily, I've recently discovered git-svn which solves this problem > for me. > >> Don't fix it if it ain't broke? > > Depends on what constitutes "broken" and how much an improvement > costs :) > > Subversion is bad enough that I would argue that switching to > something better might make sense even for a one-foot-in-the-grave > project such as MLton. > > Anyway, this was just a probe to see if there's any interest in this > sort of thing. There appears to be none, so never mind... > > -- > http://laurikari.net/ville/ > > _______________________________________________ > MLton mailing list > MLton@mlton.org > http://mlton.org/mailman/listinfo/mlton > From ville at laurikari.net Wed Apr 15 10:11:08 2009 From: ville at laurikari.net (Ville Laurikari) Date: Wed Apr 15 10:11:14 2009 Subject: [MLton] Replacing Subversion with a DVCS In-Reply-To: <20090414165108.GA31433@laurikari.net> References: <20090414074913.GA9494@laurikari.net> <162de7480904140823r7a76e490iaf4bc9dfea32fb22@mail.gmail.com> <20090414165108.GA31433@laurikari.net> Message-ID: <20090415171108.GB3972@laurikari.net> > something better might make sense even for a one-foot-in-the-grave > project such as MLton. Just to clarify... this was a bad choice of words. I don't mean to say that MLton is a dying project, although that's what I obviously _did_ say. But I didn't mean it that way :) What I meant to say is that there is currently a relatively low volume of (visible) development effort. -- http://laurikari.net/ville/ From fluet at tti-c.org Thu Apr 16 09:56:49 2009 From: fluet at tti-c.org (Matthew Fluet) Date: Thu Apr 16 09:56:58 2009 Subject: [MLton] Replacing Subversion with a DVCS In-Reply-To: <49E604D6.8040407@cmu.edu> References: <20090414074913.GA9494@laurikari.net> <162de7480904140823r7a76e490iaf4bc9dfea32fb22@mail.gmail.com> <20090414165108.GA31433@laurikari.net> <49E604D6.8040407@cmu.edu> Message-ID: As Ville inferred, I have been using "git svn" to stage some work. Probably for many of the same reasons that others have mentioned: moving work-in-progress between machines, checkpointing intermediate states (especially when there may be long stretches between opportunities to work), rebasing against trunk changes, ability to revise history (merge commits, etc.) before publishing on SVN, etc. I think that Subversion is working well enough for the current level of development. And I don't think changing the infrastructure is going to change the level of development significantly. As Dan mentioned, there are some other research projects that are using MLton (Purdue!), but choose not to host their development in the SVN repository --- but that is a social problem, not a technical one. I don't think that there has ever been a request for committer status that we have not granted. So, while I think it makes sense to stick with Subversion for the time being, I don't think it prevents anyone from experimenting with DVCS in parallel. That is, people should feel free to advertise git urls (either on the mailing list or on the wiki) for interesting branches that they wish to publish and maintain. I don't think that is at odds with having the SVN/trunk be the "ground truth" and, as we've seen with "git svn", any changes that are merged into the trunk come along with their local history, etc. (The only downsides that I've noticed are the rapid timestamps, the svn:ignore property, and some file renames/moves that don't get recorded as such in the SVN.) I also have to admit that I don't quite "get" all the advantages of a DVCS. Yes, having the entire history available locally (with no network traffic) is nice. Also, merging trunk changes into a branch is pretty easy with git (but, recent versions of Subversion have much better merge support). But, beyond that, I don't really get the workflow. -Matthew On Wed, 15 Apr 2009, Daniel Spoonhower wrote: > Though I have yet to commit anything to the trunk, I also use "git svn" > to access the repository and work with a branch. I also think it's > worth considering a DVCS: though the trunk is relatively stable, there > are a number of research projects based on MLton and it would be a > useful way of sharing/distributing that work. > > --djs > > Ville Laurikari wrote: >> On Tue, Apr 14, 2009 at 05:23:09PM +0200, Wesley W. Terpstra wrote: >>> On Tue, Apr 14, 2009 at 9:49 AM, Ville Laurikari wrote: >>>> It seems to me that the MLton project would benefit from a distributed >>>> version control system. >>> I don't think it's so important. MLton development is pretty slow at >>> the moment and at least I've had no problems with using subversion. >> >> I wouldn't have asked if I didn't have any problems with using >> Subversion. Accessing mlton.org from some machines at work is quite >> cumbersome. Either I had to spend time setting up ssh tunnels to >> access mlton.org or work without version control. >> >> Luckily, I've recently discovered git-svn which solves this problem >> for me. >> >>> Don't fix it if it ain't broke? >> >> Depends on what constitutes "broken" and how much an improvement >> costs :) >> >> Subversion is bad enough that I would argue that switching to >> something better might make sense even for a one-foot-in-the-grave >> project such as MLton. >> >> Anyway, this was just a probe to see if there's any interest in this >> sort of thing. There appears to be none, so never mind... >> >> -- >> http://laurikari.net/ville/ >> >> _______________________________________________ >> MLton mailing list >> MLton@mlton.org >> http://mlton.org/mailman/listinfo/mlton >> > > _______________________________________________ > MLton mailing list > MLton@mlton.org > http://mlton.org/mailman/listinfo/mlton > From adam at spicenitz.org Sat Apr 18 19:45:52 2009 From: adam at spicenitz.org (Adam Goode) Date: Sat Apr 18 19:45:57 2009 Subject: [MLton] rounding modes and minimum gcc version Message-ID: <49EA9060.7050500@spicenitz.org> Hi, Looking into IEEE rounding mode stuff more, it looks like for gcc, if the rounding mode is going to be changed, then -frounding-math must be set, or else behavior is undefined. Otherwise, gcc could perform constant folding assuming the default rounding mode. I believe all of the runtime and anything compiled with the C backend must have this flag (but only if the rounding mode is actually ever changed from SML, is it easy to tell?). This flag was only introduced in gcc 3.4. I am adding it conditionally to the runtime Makefile, but what about in mlton-script? Can we assume gcc 3.4? (It's 5 years old today!) Thanks, Adam -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 260 bytes Desc: OpenPGP digital signature Url : http://mlton.org/pipermail/mlton/attachments/20090418/86777fcb/signature.pgp From fluet at tti-c.org Sat Apr 18 20:15:34 2009 From: fluet at tti-c.org (Matthew Fluet) Date: Sat Apr 18 20:15:37 2009 Subject: [MLton] rounding modes and minimum gcc version In-Reply-To: <49EA9060.7050500@spicenitz.org> References: <49EA9060.7050500@spicenitz.org> Message-ID: On Sat, 18 Apr 2009, Adam Goode wrote: > Looking into IEEE rounding mode stuff more, it looks like for gcc, if > the rounding mode is going to be changed, then -frounding-math must be > set, or else behavior is undefined. Otherwise, gcc could perform > constant folding assuming the default rounding mode. I believe all of > the runtime and anything compiled with the C backend must have this flag > (but only if the rounding mode is actually ever changed from SML, is it > easy to tell?). I don't think this is necessary; do you have an example program that exhibits a bug? See the thread starting at: http://mlton.org/pipermail/mlton-user/2007-July/001154.html and the commits: http://mlton.org/cgi-bin/viewsvn.cgi?rev=5793&view=rev http://mlton.org/cgi-bin/viewsvn.cgi?rev=5794&view=rev http://mlton.org/cgi-bin/viewsvn.cgi?view=rev&rev=5799 and also the thread starting at: http://mlton.org/pipermail/mlton/2008-May/030262.html and the commit: http://mlton.org/cgi-bin/viewsvn.cgi?view=rev&rev=6847 In short, the current SVN sources are very careful to keep gcc from seeing any opportunities for constant-folding of floating-point operations and to only constant-fold floating-point operations that are valid in all rounding modes. -Matthew From adam at spicenitz.org Sat Apr 18 20:34:28 2009 From: adam at spicenitz.org (Adam Goode) Date: Sat Apr 18 20:34:34 2009 Subject: [MLton] rounding modes and minimum gcc version In-Reply-To: References: <49EA9060.7050500@spicenitz.org> Message-ID: <49EA9BC4.7080908@spicenitz.org> On 04/18/2009 11:15 PM, Matthew Fluet wrote: > On Sat, 18 Apr 2009, Adam Goode wrote: >> Looking into IEEE rounding mode stuff more, it looks like for gcc, if >> the rounding mode is going to be changed, then -frounding-math must be >> set, or else behavior is undefined. Otherwise, gcc could perform >> constant folding assuming the default rounding mode. I believe all of >> the runtime and anything compiled with the C backend must have this flag >> (but only if the rounding mode is actually ever changed from SML, is it >> easy to tell?). > > I don't think this is necessary; do you have an example program that > exhibits a bug? > No, I'm not seeing a particular bug, just in working on fixing up some ARM rounding mode bugs was told that "If you don't use -frounding-math (or the pragma) you are guaranteeing that code in the object will only ever execute with the default rounding mode." http://sourceware.org/ml/libc-ports/2009-04/msg00020.html Here is the gcc option: http://gcc.gnu.org/onlinedocs/gcc-4.3.3/gcc/Optimize-Options.html#index-frounding_002dmath-744 And C99 says: "If part of a program tests floating-point status flags, sets floating-point control modes, or runs under non-default mode settings, but was translated with the state for the FENV_ACCESS pragma ??off??, the behavior is undefined." -frounding-math sets the default for FENV_ACCESS (which is otherwise unimplemented in gcc), and so if you try to read or set the rounding mode without -frounding-math, C99 allows for arbitrary behavior. I know this is silly, but why not set the option? Adam -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 260 bytes Desc: OpenPGP digital signature Url : http://mlton.org/pipermail/mlton/attachments/20090418/274ce994/signature.pgp From fluet at tti-c.org Sun Apr 19 05:09:59 2009 From: fluet at tti-c.org (Matthew Fluet) Date: Sun Apr 19 05:10:04 2009 Subject: [MLton] rounding modes and minimum gcc version In-Reply-To: <49EA9BC4.7080908@spicenitz.org> References: <49EA9060.7050500@spicenitz.org> <49EA9BC4.7080908@spicenitz.org> Message-ID: On Sat, 18 Apr 2009, Adam Goode wrote: > On 04/18/2009 11:15 PM, Matthew Fluet wrote: >> On Sat, 18 Apr 2009, Adam Goode wrote: >>> Looking into IEEE rounding mode stuff more, it looks like for gcc, if >>> the rounding mode is going to be changed, then -frounding-math must be >>> set, or else behavior is undefined. Otherwise, gcc could perform >>> constant folding assuming the default rounding mode. I believe all of >>> the runtime and anything compiled with the C backend must have this flag >>> (but only if the rounding mode is actually ever changed from SML, is it >>> easy to tell?). >> >> I don't think this is necessary; do you have an example program that >> exhibits a bug? > > No, I'm not seeing a particular bug, just in working on fixing up some ARM > rounding mode bugs was told that "If you don't use -frounding-math (or the > pragma) you are guaranteeing that code in the object will only ever execute > with the default rounding mode." > > http://sourceware.org/ml/libc-ports/2009-04/msg00020.html > > > Here is the gcc option: > http://gcc.gnu.org/onlinedocs/gcc-4.3.3/gcc/Optimize-Options.html#index-frounding_002dmath-744 > > > And C99 says: > "If part of a program tests floating-point status flags, sets > floating-point control modes, or runs under non-default mode settings, > but was translated with the state for the FENV_ACCESS pragma ????off????, > the behavior is undefined." > > > -frounding-math sets the default for FENV_ACCESS (which is otherwise > unimplemented in gcc), and so if you try to read or set the rounding > mode without -frounding-math, C99 allows for arbitrary behavior. I know > this is silly, but why not set the option? I guess there is no real harm. -Matthew