From icfp.publicity at googlemail.com Wed Apr 1 07:32:45 2009 From: icfp.publicity at googlemail.com (Matthew Fluet (ICFP Publicity Chair)) Date: Wed Apr 1 07:33:21 2009 Subject: [MLton-user] DEFUN09: Call for Talks & Tutorials (co-located w/ ICFP09) Message-ID: <53ff55480904010832p465a4addmc01de98ab44d7247@mail.gmail.com> Call for Talks and Tutorials ACM SIGPLAN 2009 Developer Tracks on Functional Programming http://www.defun2009.info/ Edinburgh, Scotland, September 3 and 5, 2009 The workshop will be held in conjunction with ICFP 2009 http://www.cs.nott.ac.uk/~gmh/icfp09.html Important dates Proposal Deadline: June 5, 2009, 0:00 UTC Notification: June 19, 2009 DEFUN 2009 invites functional programmers and researchers who know how to solve problems with functional progamming to give talks and lead tutorials at the The ICFP Developer Tracks. We want to know about your favorite programming techniques, powerful libraries, and engineering approaches you've used that the world should know about and apply to other projects. We want to know how to be productive using functional programming, write better code, and avoid common pitfalls. We invite proposals for presentations in the following categories. Lightning talks 5- to 10-minute talks that introduce exciting and promising research or techniques that may be in progress or not yet ready for widespread use, but that offer a glimpse into the near future of real world functional programming. Examples: * Clustered high performance computing in a functional language * Making advanced type systems more accessible to working programmers * How and why we're infiltrating category theory info industry How-to talks 45-minute "how-to" talks that provide specific information on how to solve specific problems using functional programming. These talks focus on concrete examples, but provide useful information for developers working on different projects or in different contexts. Examples: * "How I use Haskell for oilfield simulations." * "How I replaced /sbin/init by a Scheme program." * "How I hooked up my home appliances to an Erlang control system." * "How I got an SML program to drive my BMW." General language tutorials Half-day general language tutorials for specific functional languages, given by recognized experts for the respective languages. Technology tutorials Half-day tutorials on techniques, technologies, or solving specific problems in functional programming. Examples: * How to make the best use of specific FP programming techniques * How to inject FP into a development team used to more conventional technologies * How to connect FP to existing libraries / frameworks / platforms * How to deliver high-performance systems with FP * How to deliver high-reliability systems with FP Remember that your audience will include computing professionals who are not academics and who may not already be experts on functional programming. Presenters of tutorials will receive free registration to CUFP 2009. Submission guidelines Submit a proposal of 150 words or less for either a 45-minute talk with a short Q&A session at the end, or a 300-word-or-less proposal for a 3-hour tutorial, where you present your material, but also give participants a chance to practice it on their own laptops. Some advice: * Give it a simple and straightforward title or name; avoid fancy titles or puns that would make it harder for attendees to figure out what you'll be talking about. * Clearly identify the level of the talk: What knowledge should people have when they come to the presentation or tutorial? * Explain why people will want to attend: o Is the language or library useful for a wide range of attendees? o Is the pitfall you're identifying common enough that a wide range of attendees is likely to encounter it? * Explain what benefits attendees are expected to take home to their own projects. * For a tutorial, explain how you want to structure the time, and what you expect to have attendees to do on their laptops. List what software you'll expect attendees to have installed prior to coming. Submit your proposal in plain text electronically to defun-2009-submissions@serpentine.com by the beginning of Friday, June 5 2009, Universal Coordinated Time. Organizers * Yaron Minsky (Jane Street Capital) * Ulf Wiger (Erlang Training and Consulting) * Mike Sperber - co-chair (DeinProgramm) * Bryan O'Sullivan - co-chair (Linden Lab) 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 13:08:42 2009 Subject: [MLton-user] Re: [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 fluet at tti-c.org Wed Apr 1 14:27:41 2009 From: fluet at tti-c.org (Matthew Fluet) Date: Wed Apr 1 13:28:15 2009 Subject: [MLton-user] Type error with the exit status from MLton.Process.reap In-Reply-To: <20090323094907.GA6198@localdomain> References: <20090323094907.GA6198@localdomain> Message-ID: On Mon, 23 Mar 2009, Risto Saarelma wrote: > I'm trying to read the exit status of a process run with MLton.Process. I use > this code: > > > open MLton.Process > > val () = > let > val proc = MLton.Process.create { > args = [], > env = NONE, > path = "/usr/bin/ls", > stderr = Param.pipe, > stdin = Param.null, > stdout = Param.pipe} > val exitStatus = reap proc > > in > case exitStatus of > Posix.Process.W_EXITSTATUS st => print "Error code.\n" > | _ => print "Something else.\n" > end > > > Using MLton 20070826, I get the following error: > > $ mlton proctest.sml > Error: proctest.sml 15.9. > Case object and rules disagree. > object type: [?.PosixProcess.exit_status] > rules expect: [Unix.exit_status] > in: case exitStatus of (Posix.Process ... "Something else.\n") > compilation aborted: parseAndElaborate reported errors > > MLton.Process.reap is supposed to return a value of type > Posix.Process.exit_status, and the actual Posix.Process.exit_status is > apparently just an alias for Unix.exit_status. So why am I getting the type > error? There was a missing type constraint in the implementation of the Basis Library. If you would like to fix a local install, apply the patch from: http://mlton.org/cgi-bin/viewsvn.cgi?view=rev&rev=7029 to /usr/local/lib/mlton/sml/basis/libs/basis-extra/top-level/basis.sig -Matthew From ville at laurikari.net Wed Apr 1 21:37:22 2009 From: ville at laurikari.net (Ville Laurikari) Date: Thu Apr 2 04:32:33 2009 Subject: [MLton-user] Re: [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 04:32:34 2009 Subject: [MLton-user] Re: [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 04:32:36 2009 Subject: [MLton-user] Re: [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 10:43:41 2009 Subject: [MLton-user] Re: [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:43 2009 Subject: [MLton-user] 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 11:22:26 2009 Subject: [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 mark.piffer at chello.at Mon Apr 6 08:59:53 2009 From: mark.piffer at chello.at (Mark Piffer) Date: Mon Apr 6 09:00:42 2009 Subject: [MLton-user] installation problem on cygwin (missing gmp functions) Message-ID: <49DA26F9.90305@chello.at> Hello, as a complete beginner to SML and MLTON, I am having problems when installing the binary package on cygwin. The gc.o module is expecting some gmp functions with a "__imp__" prefix where my downloaded gmp package builds them without this prefix. Examples are __gmpz_cmp and others (but all from the gmpz subtree seemingly). Is there a rationale behind this "__imp__" or can I simply rename the functions to meet the naming convention? I can't make too much sense from the way gmp creates the names for these functions, it looks like it just renames them per define and there is no variable part in the defines, i.e. I don't see a way how the functions could ever receive this or any other prefix. regards, Mark From fluet at tti-c.org Tue Apr 7 11:26:47 2009 From: fluet at tti-c.org (Matthew Fluet) Date: Tue Apr 7 10:24:03 2009 Subject: [MLton-user] installation problem on cygwin (missing gmp functions) In-Reply-To: <49DA26F9.90305@chello.at> References: <49DA26F9.90305@chello.at> Message-ID: On Mon, 6 Apr 2009, Mark Piffer wrote: > Hello, > as a complete beginner to SML and MLTON, I am having problems when installing > the binary package > on cygwin. The gc.o module is expecting some gmp functions with a "__imp__" > prefix where my downloaded > gmp package builds them without this prefix. Examples are __gmpz_cmp and > others (but all from the gmpz subtree > seemingly). Is there a rationale behind this "__imp__" or can I simply rename > the functions to meet the > naming convention? I can't make too much sense from the way gmp creates the > names for these functions, it looks > like it just renames them per define and there is no variable part in the > defines, i.e. I don't see a way how > the functions could ever receive this or any other prefix. I believe that the "__imp__" prefix comes from the Win32 DLL ABI conventions. The mlton-20070826-1.x86-cygwin.tgz binary package would have been built in Aug. 2007 with an up-to-date Cygwin install and the GMP package installed through Cygwin. From your comments, it sounds like you may have downloaded and installed GMP from outside the Cygwin installer, which might account for the difference in the exported GMP interface. Alternatively, the GMP package installed through Cygwin may have changed between Aug. 2007 and now. You might also try a more recent Cygwin binary package from the Experimental page: http://mlton.org/Experimental It looks as though the binary in that package doesn't reference any "__imp____gmpz_*" symbols. While there were some changes between mlton-20070826 and r6941 to support finer grained symbol visibility control with respect to the SML FFI, that shouldn't have affected how the runtime system library accesses the GMP functions; so, either the builder of mlton-cygwin.r6941.tar.gz (Wesley Terpstra) also downloaded/installed GMP from outside the Cygwin installer or the GMP package installed through Cygwin has changed the ABI between Aug. 2007 and then. -Matthew 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:37:02 2009 Subject: [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 rossberg at mpi-sws.org Fri Apr 17 06:56:17 2009 From: rossberg at mpi-sws.org (Andreas Rossberg) Date: Fri Apr 17 06:56:28 2009 Subject: [MLton-user] 2nd Call for Papers: ML Workshop 2009 Message-ID: <49E88A81.4060605@mpi-sws.org> 2nd CALL FOR PAPERS The 2009 ACM SIGPLAN Workshop on ML To be held in conjunction with ICFP 2009 on Sunday, August 30, 2009 in Edinburgh, Scotland, UK http://www.mpi-sws.org/~rossberg/ml2009/ ------------------------------------------------------ Only 3 about weeks left until the submission deadline! ------------------------------------------------------ GOALS OF THE WORKSHOP ML is a family of programming languages that includes dialects known as Standard ML, Objective Caml, and F#. The development of these languages has inspired a large amount of computer science research, both practical and theoretical. This workshop aims to provide a forum to encourage discussion and research on ML and related technology (higher-order, typed, or strict languages). The 2009 Work shop on ML will be held in conjunction with the 14th ACM SIGPLAN International Conference on Functional Programming (ICFP 2009) in Edinburgh, Scotland, UK. Previous instances were ML 2005 in Tallinn, Estonia, ML 2006 in Portland, Oregon, USA, ML 2007 in Freiburg, Germany, and ML 2008 in Victoria, British Columbia, Canada). IMPORTANT DATES Submission: Monday, May 11, 2009 (earlier than in past years!) Notification: Friday, May 29, 2009 Final revision: Monday, June 15, 2009 Workshop: Sunday, August 30, 2009 SUBMISSION GUIDELINES We seek papers on topics related to ML, including, but not limited to: * applications: case studies, experience reports, pearls, etc. * extensions: higher forms of polymorphism, generic programming, objects, concurrency, distribution and mobility, semi-structured data handling, etc. * type systems: inference, effects, overloading, modules, contracts, specifications and assertions, dynamic typing, error reporting, etc. * implementation: compilers, interpreters, type checkers, partial evaluators, runtime systems, garbage collectors, etc. * environments: libraries, tools, editors, debuggers, cross-language interoperability, functional data structures, etc. * semantics: operational, denotational, program equivalence, parametricity, mechanization, etc. Submitted papers should describe new ideas, experimental results, ML-related projects, or informed positions regarding proposals for next-generation ML-style languages. In order to encourage lively discussion, submitted papers may describe work in progress. All papers will be judged on a combination of correctness, significance, novelty, clarity, and interest to the community. All paper submissions must be in English and at most 12 pages total length in the standard ACM SIGPLAN two-column conference format (9pt). Accepted papers will be published by the ACM and will appear in the ACM Digital Library. More details about the submission procedure will be announced later on the Workshop web page. PROGRAM CHAIR Andreas Rossberg (Max Planck Institute for Software Systems) PROGRAM COMMITTEE Umut Acar (Toyota Technological Institute at Chicago) Damien Doligez (INRIA Paris-Rocquencourt) Neal Glew (Intel) Andrew Gordon (Microsoft Research Cambridge) Patricia Johann (University of Strathclyde) Oleg Kiselyov (FNMOC) Neelakantan Krishnaswami (Carnegie Mellon University) David MacQueen (University of Chicago) Yasuhiko Minamide (University of Tsukuba) Norman Ramsey (Tufts University) STEERING COMMITTEE See the ML Workshop series home page at: http://www.tti-c.org/blume/ml-workshop/ From duvarney at reactive-systems.com Sat Apr 18 08:15:21 2009 From: duvarney at reactive-systems.com (Dan DuVarney) Date: Sat Apr 18 08:15:47 2009 Subject: [MLton-user] gcc memory exhaustion Message-ID: <49E9EE89.6090506@reactive-systems.com> Hello: I'm attempting to use SVN r7016 MLton/MinGW to compile a large program with time-profiling enabled. MLton generates a 235MB .c source file which gcc (3.4.5) chokes on (i.e., runs out ofmemory). I've saved the source files and tried compiling the MLton-generated code without any optimizations enabled, but haven't been able to successfully compile. I'm using a Windows/XP machine with 3GB memory. Does anyone have any suggestions on how to successfully compile this program? Perhaps something similar to the -coalesce option (which appears to have been removed -- please let me know if that is not the case) which will produce multiple smaller source files in place of this one large file? Thanks, Dan -- Dan DuVarney Reactive Systems, Inc. +1 (919) 324-3507 ext. 103 duvarney@reactive-systems.com http://www.reactive-systems.com From fluet at tti-c.org Sat Apr 18 08:33:04 2009 From: fluet at tti-c.org (Matthew Fluet) Date: Sat Apr 18 08:33:06 2009 Subject: [MLton-user] gcc memory exhaustion In-Reply-To: <49E9EE89.6090506@reactive-systems.com> References: <49E9EE89.6090506@reactive-systems.com> Message-ID: On Sat, 18 Apr 2009, Dan DuVarney wrote: > I'm attempting to use SVN r7016 MLton/MinGW to compile a large program > with time-profiling enabled. MLton generates a 235MB .c source file > which gcc (3.4.5) chokes on (i.e., runs out ofmemory). I've saved the > source files and tried compiling the MLton-generated code without any > optimizations enabled, but haven't been able to successfully compile. > I'm using a Windows/XP machine with 3GB memory. Is this using the C codegen or the native codegen? If it is using the native codegen (the default on an x86 platform), then there will be only one .c file that includes global and static data for the program (including profiling source location data). That one file can't really be split into smaller pieces. On the other hand, it is mostly static data, so I'd be suprised that gcc has difficulty with it. > Does anyone have any suggestions on how to successfully compile this > program? Perhaps something similar to the -coalesce option (which > appears to have been removed -- please let me know if that is not the > case) which will produce multiple smaller source files in place of this > one large file? The option has been renamed to '-chunkify coalesce'. You might also try '-chunkify func', which is akin to disabling chunking of multiple IL functions into a single C function. From duvarney at reactive-systems.com Mon Apr 20 10:53:54 2009 From: duvarney at reactive-systems.com (Dan DuVarney) Date: Mon Apr 20 10:54:27 2009 Subject: [MLton-user] gcc memory exhaustion In-Reply-To: References: <49E9EE89.6090506@reactive-systems.com> Message-ID: <49ECB6B2.10502@reactive-systems.com> Matthew Fluet wrote: > On Sat, 18 Apr 2009, Dan DuVarney wrote: >> I'm attempting to use SVN r7016 MLton/MinGW to compile a large program >> with time-profiling enabled. MLton generates a 235MB .c source file >> which gcc (3.4.5) chokes on (i.e., runs out ofmemory). I've saved the >> source files and tried compiling the MLton-generated code without any >> optimizations enabled, but haven't been able to successfully compile. >> I'm using a Windows/XP machine with 3GB memory. > > Is this using the C codegen or the native codegen? If it is using the > native codegen (the default on an x86 platform), then there will be > only one .c file that includes global and static data for the program > (including profiling source location data). That one file can't > really be split into smaller pieces. On the other hand, it is mostly > static data, so I'd be suprised that gcc has difficulty with it. Thanks for the help. I'm using native codegen, so it sounds like splitting the file is not an option. The memory problem is probably due to a bug in gcc, as there are number of open bugs in bugzilla complaining about gcc running out of memory. I tried compiling with gcc 4.3.3 and it also runs out of memory. -Dan -- Dan DuVarney Reactive Systems, Inc. +1 (919) 324-3507 ext. 103 duvarney@reactive-systems.com http://www.reactive-systems.com From fluet at tti-c.org Mon Apr 20 21:05:29 2009 From: fluet at tti-c.org (Matthew Fluet) Date: Mon Apr 20 21:05:34 2009 Subject: [MLton-user] gcc memory exhaustion In-Reply-To: <49ECB6B2.10502@reactive-systems.com> References: <49E9EE89.6090506@reactive-systems.com> <49ECB6B2.10502@reactive-systems.com> Message-ID: On Mon, 20 Apr 2009, Dan DuVarney wrote: > Matthew Fluet wrote: >> On Sat, 18 Apr 2009, Dan DuVarney wrote: >>> I'm attempting to use SVN r7016 MLton/MinGW to compile a large program >>> with time-profiling enabled. MLton generates a 235MB .c source file >>> which gcc (3.4.5) chokes on (i.e., runs out ofmemory). I've saved the >>> source files and tried compiling the MLton-generated code without any >>> optimizations enabled, but haven't been able to successfully compile. >>> I'm using a Windows/XP machine with 3GB memory. >> >> Is this using the C codegen or the native codegen? If it is using the >> native codegen (the default on an x86 platform), then there will be >> only one .c file that includes global and static data for the program >> (including profiling source location data). That one file can't >> really be split into smaller pieces. On the other hand, it is mostly >> static data, so I'd be suprised that gcc has difficulty with it. > > Thanks for the help. I'm using native codegen, so it sounds like > splitting the file is not an option. It might not be impossible to split the file, but it won't be trivial. At the very least, it would help to know which component of the file causes the gcc memory exhaustion. You might also try compiling with '-profile time-field', which directs the compiler to track the current source location for time profiling by setting a field of the GC state, rather than determining it from the program counter. There is slightly more overhead when profiling this way (but it is necessary for profiling with the C codegen), but it also avoids generating a large static table of code pointer addresses. > The memory problem is probably due > to a bug in gcc, as there are number of open bugs in bugzilla > complaining about gcc running out of memory. I tried compiling with gcc > 4.3.3 and it also runs out of memory. > > -Dan > >