Does -CURRENT's gcc generate ___tls_get_addr under any circumstances

John Merryweather Cooper johnmary at adelphia.net
Fri Jun 25 18:09:29 PDT 2004


On Fri, Jun 25, 2004 at 05:09:08PM -0400, Joe Marcus Clarke wrote:
> On Fri, 2004-06-25 at 16:44, John Merryweather Cooper wrote:
> > I'm working on porting (and getting fully working) lang/mono
> > version 0.96, and I'm having a problem.  In one of my object
> > files--mini.lo--I'm getting an extern reference to
> > ___tls_get_addr.  I've been over the source code in mini.c
> > and all the included headers, and I can't find anything to
> > get rid of this reference or find a way to resolve it.  As
> > a result, the linking of the mono runtime binary fails with
> > this symbol unresolved.
> > 
> > Any and all clues are welcome!
> 
> As I recall, this is from boehm.  You'll have to tell boehm not to do
> thread-local storage.  Note: boehm is in the libgc subdirectory inside
> mono.
> 
> Joe
> 
> > 
> > jmc
> > _______________________________________________
> > freebsd-gnome at freebsd.org mailing list
> > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome
> > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe at freebsd.org"
> -- 
> PGP Key : http://www.marcuscom.com/pgp.asc
> 
> 

Hmmm . . .

Well, looking at the libgc code, I note that if it detects GCC 3.x it uses
pthreads for thread local storage.  The configure script doesn't provide
a means to turn off tls.

Just to be sure, I undefined USE_COMPILER_TLS on the command line with 
-UUSE_COMPILER_TLS.

No dice, ___tls_get_addr still shows up in the mini.lo object which gets linked
into libmono.so which causes mono to fail to link with an undefined
symbol (see attached build script).

I've checked all the objects in libgc, and none of them are defining
this symbol.  It seems prettly clear that it comes into existance
during the compile of mini.c (it's in mini.lo), but I can't for the
life of me find were it is in mini.c or in it's includes.

jmc
-------------- next part --------------
Script started on Fri Jun 25 17:01:17 2004
===>  Vulnerability check disabled
===>  Extracting for mono-0.96
>> Checksum OK for mono-0.96.tar.gz.
===>  Patching for mono-0.96
===>  Applying FreeBSD patches for mono-0.96
===>   mono-0.96 depends on executable: gmake - found
===>   mono-0.96 depends on executable: bison - found
===>   mono-0.96 depends on executable: pkg-config - found
===>   mono-0.96 depends on shared library: glib-2.0.400 - found
===>  Configuring for mono-0.96
checking build system type... i386-portbld-freebsd5.2
checking host system type... i386-portbld-freebsd5.2
checking target system type... i386-portbld-freebsd5.2
checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... no
checking for nawk... nawk
checking whether gmake sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether ln -s works... yes
checking host platform characteristics... ok
checking for gcc... cc
checking for gcc... (cached) cc
checking for C compiler default output... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ANSI C... none needed
checking for style of include used by gmake... GNU
checking dependency style of cc... gcc3
checking for cc option to accept ANSI C... none needed
checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel
checking for bison... yes
checking how to run the C preprocessor... cc -E
checking for egrep... grep -E
checking for ANSI C header files... yes
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking for a sed that does not truncate output... /usr/bin/sed
checking how to recognise dependent libraries... pass_all
checking command to parse /usr/bin/nm -B output... ok
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for ranlib... ranlib
checking for strip... strip
checking for objdir... .libs
checking for cc option to produce PIC... -fPIC
checking if cc PIC flag -fPIC works... yes
checking if cc static flag -static works... yes
checking if cc supports -c -o file.o... yes
checking if cc supports -c -o file.lo... yes
checking if cc supports -fno-rtti -fno-exceptions... yes
checking whether the linker (/usr/bin/ld) supports shared libraries... yes
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking dynamic linker characteristics... freebsd5.2 ld.so
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking whether -lc should be explicitly linked in... yes
creating libtool
checking for ld used by GCC... (cached) /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes
checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes
checking sys/filio.h usability... yes
checking sys/filio.h presence... yes
checking for sys/filio.h... yes
checking sys/sockio.h usability... yes
checking sys/sockio.h presence... yes
checking for sys/sockio.h... yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking utime.h usability... yes
checking utime.h presence... yes
checking for utime.h... yes
checking semaphore.h usability... yes
checking semaphore.h presence... yes
checking for semaphore.h... yes
checking sys/un.h usability... yes
checking sys/un.h presence... yes
checking for sys/un.h... yes
checking valgrind/memcheck.h usability... no
checking valgrind/memcheck.h presence... no
checking for valgrind/memcheck.h... no
checking elf.h usability... yes
checking elf.h presence... yes
checking for elf.h... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking for void *... yes
checking size of void *... 4
checking for pkg-config... /usr/local/bin/pkg-config
checking for glib-2.0 >= 1.3.11... yes
checking BASE_DEPENDENCIES_CFLAGS... -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include  
checking BASE_DEPENDENCIES_LIBS... -L/usr/local/lib -lglib-2.0 -liconv  
checking JDK headers... not found
checking for getgrgid_r... yes
checking for getgrnam_r... yes
checking for getpwnam_r... yes
checking for getpwuid_r... yes
checking for getresuid... yes
checking for setresuid... yes
checking if off_t is 64 bits wide... ok
checking for socket in -lsocket... no
checking for MSG_NOSIGNAL... no
checking for SOL_IP... no
checking for SOL_IPV6... no
checking for SOL_TCP... no
checking for IP_PKTINFO... no
checking for struct ip_mreqn... no
checking for struct ip_mreq... yes
checking for gethostbyname2_r... no
checking for gethostbyaddr in -lnsl... no
checking for inet_pton... yes
checking for inet_aton... yes
checking size of sockaddr_un.sun_path... 104
checking whether cc supports zero length arrays... yes
checking for main in -lpthread... yes
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking for pthread_mutex_timedlock... yes
checking for pthread_getattr_np... no
checking for pthread_attr_get_np... yes
checking for PTHREAD_MUTEX_RECURSIVE... ok
checking for pthread_attr_setstacksize... yes
checking for working __thread... yes
checking for working sigaltstack... disabled
checking for library containing sem_init... none required
checking for tm_gmtoff in struct tm... yes
checking for finite... yes
checking for isfinite... no
checking for isfinite in math.h... yes
checking for poll... yes
checking for signbit... yes
checking for SIGEV_THREAD definition... no
checking for socklen_t... yes
checking for trunc... yes
checking for aintl in -lsunmath... no
checking if usage of random device is requested... yes
checking for random device... yes
checking if inter-process shared handles are requested... yes
checking for icu-config... no
configure: WARNING: Only invariant locale available; install ICU for I18N support
configure: creating ./config.status
config.status: creating Makefile
config.status: creating mint.pc
config.status: creating mono.pc
config.status: creating mono/Makefile
config.status: creating mono/utils/Makefile
config.status: creating mono/metadata/Makefile
config.status: creating mono/dis/Makefile
config.status: creating mono/cil/Makefile
config.status: creating mono/arch/Makefile
config.status: creating mono/os/Makefile
config.status: creating mono/os/win32/Makefile
config.status: creating mono/os/unix/Makefile
config.status: creating mono/arch/x86/Makefile
config.status: creating mono/arch/amd64/Makefile
config.status: creating mono/arch/hppa/Makefile
config.status: creating mono/arch/ppc/Makefile
config.status: creating mono/arch/sparc/Makefile
config.status: creating mono/arch/s390/Makefile
config.status: creating mono/arch/arm/Makefile
config.status: creating mono/arch/alpha/Makefile
config.status: creating mono/interpreter/Makefile
config.status: creating mono/tests/Makefile
config.status: creating mono/tests/tests-config
config.status: creating mono/benchmark/Makefile
config.status: creating mono/monoburg/Makefile
config.status: creating mono/monograph/Makefile
config.status: creating mono/io-layer/Makefile
config.status: creating mono/handles/Makefile
config.status: creating mono/mini/Makefile
config.status: creating mono/profiler/Makefile
config.status: creating ikvm-jni/Makefile
config.status: creating runtime/Makefile
config.status: creating runtime/net_1_1/Makefile
config.status: creating runtime/net_2_0/Makefile
config.status: creating scripts/Makefile
config.status: creating man/Makefile
config.status: creating web/Makefile
config.status: creating docs/Makefile
config.status: creating data/Makefile
config.status: creating samples/Makefile
config.status: creating support/Makefile
config.status: creating data/config
config.status: creating mono.spec
config.status: creating tools/Makefile
config.status: creating tools/locale-builder/Makefile
config.status: creating config.h
config.status: executing depfiles commands
configure: configuring in libgc
configure: running /bin/sh './configure' --prefix=/usr/local  '--program-transform-name=''' '--with-gc=included' '--prefix=/usr/local' '--build=i386-portbld-freebsd5.2' 'CFLAGS=-O -pipe -march=athlon' 'CPPFLAGS= -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS' 'build_alias=i386-portbld-freebsd5.2' 'CC=cc' --disable-embed-check --with-libgc-threads=pthreads --cache-file=/dev/null --srcdir=.
checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... no
checking for nawk... nawk
checking whether gmake sets $(MAKE)... yes
checking build system type... i386-portbld-freebsd5.2
checking host system type... i386-portbld-freebsd5.2
checking for gcc... cc
checking for C compiler default output... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ANSI C... none needed
checking for style of include used by gmake... GNU
checking dependency style of cc... gcc3
checking whether we are using the GNU C++ compiler... yes
checking whether c++ accepts -g... yes
checking dependency style of c++... gcc3
checking for ar... ar
checking for ranlib... ranlib
checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel
checking whether to enable maintainer-specific portions of Makefiles... no
configure: WARNING: "FreeBSD does not yet fully support threads with Boehm GC."
checking for dlopen in -ldl... no
checking whether to build shared libraries... yes
checking which machine-dependent code should be used... 
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking for a sed that does not truncate output... /usr/bin/sed
checking whether ln -s works... yes
checking how to recognise dependent libraries... pass_all
checking command to parse /usr/bin/nm -B output... ok
checking how to run the C preprocessor... cc -E
checking for egrep... grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for ranlib... (cached) ranlib
checking for strip... strip
checking for objdir... .libs
checking for cc option to produce PIC... -fPIC
checking if cc PIC flag -fPIC works... yes
checking if cc static flag -static works... yes
checking if cc supports -c -o file.o... yes
checking if cc supports -c -o file.lo... yes
checking if cc supports -fno-rtti -fno-exceptions... yes
checking whether the linker (/usr/bin/ld) supports shared libraries... yes
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking dynamic linker characteristics... freebsd5.2 ld.so
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking whether -lc should be explicitly linked in... yes
creating libtool
checking sys/dg_sys_info.h usability... no
checking sys/dg_sys_info.h presence... no
checking for sys/dg_sys_info.h... no
checking for threads package to use... posix
checking whether Solaris gcc optimization fix is necessary... no
configure: creating ./config.status
config.status: creating Makefile
config.status: creating include/Makefile
config.status: creating include/private/Makefile
config.status: creating doc/Makefile
config.status: executing depfiles commands
config.status: executing default commands


	GC:	     included
	ICU:	     no, if you want full i18n support download it from: http://oss.software.ibm.com/icu/index.html
	__thread:    yes
	SIGALTSTACK: no
	Engine:      Building and using the JIT
	2.0 Alpha:   no
	JNI support: no


===>  Building for mono-0.96
gmake  all-recursive
gmake[1]: Entering directory `/usr/ports/local/mono/work/mono-0.96'
Making all in libgc
gmake[2]: Entering directory `/usr/ports/local/mono/work/mono-0.96/libgc'
Making all in include
gmake[3]: Entering directory `/usr/ports/local/mono/work/mono-0.96/libgc/include'
Making all in private
gmake[4]: Entering directory `/usr/ports/local/mono/work/mono-0.96/libgc/include/private'
gmake[4]: Nothing to be done for `all'.
gmake[4]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/libgc/include/private'
gmake[4]: Entering directory `/usr/ports/local/mono/work/mono-0.96/libgc/include'
gmake[4]: Nothing to be done for `all-am'.
gmake[4]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/libgc/include'
gmake[3]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/libgc/include'
gmake[3]: Entering directory `/usr/ports/local/mono/work/mono-0.96/libgc'
source='allchblk.c' object='allchblk.lo' libtool=yes \
depfile='.deps/allchblk.Plo' tmpdepfile='.deps/allchblk.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o allchblk.lo `test -f 'allchblk.c' || echo './'`allchblk.c
mkdir .libs
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c allchblk.c -MT allchblk.lo -MD -MP -MF .deps/allchblk.TPlo  -fPIC -DPIC -o .libs/allchblk.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c allchblk.c -MT allchblk.lo -MD -MP -MF .deps/allchblk.TPlo -o allchblk.o >/dev/null 2>&1
mv -f .libs/allchblk.lo allchblk.lo
source='alloc.c' object='alloc.lo' libtool=yes \
depfile='.deps/alloc.Plo' tmpdepfile='.deps/alloc.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o alloc.lo `test -f 'alloc.c' || echo './'`alloc.c
rm -f .libs/alloc.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c alloc.c -MT alloc.lo -MD -MP -MF .deps/alloc.TPlo  -fPIC -DPIC -o .libs/alloc.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c alloc.c -MT alloc.lo -MD -MP -MF .deps/alloc.TPlo -o alloc.o >/dev/null 2>&1
mv -f .libs/alloc.lo alloc.lo
source='blacklst.c' object='blacklst.lo' libtool=yes \
depfile='.deps/blacklst.Plo' tmpdepfile='.deps/blacklst.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o blacklst.lo `test -f 'blacklst.c' || echo './'`blacklst.c
rm -f .libs/blacklst.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c blacklst.c -MT blacklst.lo -MD -MP -MF .deps/blacklst.TPlo  -fPIC -DPIC -o .libs/blacklst.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c blacklst.c -MT blacklst.lo -MD -MP -MF .deps/blacklst.TPlo -o blacklst.o >/dev/null 2>&1
mv -f .libs/blacklst.lo blacklst.lo
source='checksums.c' object='checksums.lo' libtool=yes \
depfile='.deps/checksums.Plo' tmpdepfile='.deps/checksums.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o checksums.lo `test -f 'checksums.c' || echo './'`checksums.c
rm -f .libs/checksums.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c checksums.c -MT checksums.lo -MD -MP -MF .deps/checksums.TPlo  -fPIC -DPIC -o .libs/checksums.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c checksums.c -MT checksums.lo -MD -MP -MF .deps/checksums.TPlo -o checksums.o >/dev/null 2>&1
mv -f .libs/checksums.lo checksums.lo
source='dbg_mlc.c' object='dbg_mlc.lo' libtool=yes \
depfile='.deps/dbg_mlc.Plo' tmpdepfile='.deps/dbg_mlc.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o dbg_mlc.lo `test -f 'dbg_mlc.c' || echo './'`dbg_mlc.c
rm -f .libs/dbg_mlc.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c dbg_mlc.c -MT dbg_mlc.lo -MD -MP -MF .deps/dbg_mlc.TPlo  -fPIC -DPIC -o .libs/dbg_mlc.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c dbg_mlc.c -MT dbg_mlc.lo -MD -MP -MF .deps/dbg_mlc.TPlo -o dbg_mlc.o >/dev/null 2>&1
mv -f .libs/dbg_mlc.lo dbg_mlc.lo
source='dyn_load.c' object='dyn_load.lo' libtool=yes \
depfile='.deps/dyn_load.Plo' tmpdepfile='.deps/dyn_load.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o dyn_load.lo `test -f 'dyn_load.c' || echo './'`dyn_load.c
rm -f .libs/dyn_load.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c dyn_load.c -MT dyn_load.lo -MD -MP -MF .deps/dyn_load.TPlo  -fPIC -DPIC -o .libs/dyn_load.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c dyn_load.c -MT dyn_load.lo -MD -MP -MF .deps/dyn_load.TPlo -o dyn_load.o >/dev/null 2>&1
mv -f .libs/dyn_load.lo dyn_load.lo
source='finalize.c' object='finalize.lo' libtool=yes \
depfile='.deps/finalize.Plo' tmpdepfile='.deps/finalize.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o finalize.lo `test -f 'finalize.c' || echo './'`finalize.c
rm -f .libs/finalize.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c finalize.c -MT finalize.lo -MD -MP -MF .deps/finalize.TPlo  -fPIC -DPIC -o .libs/finalize.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c finalize.c -MT finalize.lo -MD -MP -MF .deps/finalize.TPlo -o finalize.o >/dev/null 2>&1
mv -f .libs/finalize.lo finalize.lo
source='gc_dlopen.c' object='gc_dlopen.lo' libtool=yes \
depfile='.deps/gc_dlopen.Plo' tmpdepfile='.deps/gc_dlopen.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o gc_dlopen.lo `test -f 'gc_dlopen.c' || echo './'`gc_dlopen.c
rm -f .libs/gc_dlopen.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c gc_dlopen.c -MT gc_dlopen.lo -MD -MP -MF .deps/gc_dlopen.TPlo  -fPIC -DPIC -o .libs/gc_dlopen.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c gc_dlopen.c -MT gc_dlopen.lo -MD -MP -MF .deps/gc_dlopen.TPlo -o gc_dlopen.o >/dev/null 2>&1
mv -f .libs/gc_dlopen.lo gc_dlopen.lo
source='gcj_mlc.c' object='gcj_mlc.lo' libtool=yes \
depfile='.deps/gcj_mlc.Plo' tmpdepfile='.deps/gcj_mlc.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o gcj_mlc.lo `test -f 'gcj_mlc.c' || echo './'`gcj_mlc.c
rm -f .libs/gcj_mlc.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c gcj_mlc.c -MT gcj_mlc.lo -MD -MP -MF .deps/gcj_mlc.TPlo  -fPIC -DPIC -o .libs/gcj_mlc.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c gcj_mlc.c -MT gcj_mlc.lo -MD -MP -MF .deps/gcj_mlc.TPlo -o gcj_mlc.o >/dev/null 2>&1
mv -f .libs/gcj_mlc.lo gcj_mlc.lo
source='headers.c' object='headers.lo' libtool=yes \
depfile='.deps/headers.Plo' tmpdepfile='.deps/headers.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o headers.lo `test -f 'headers.c' || echo './'`headers.c
rm -f .libs/headers.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c headers.c -MT headers.lo -MD -MP -MF .deps/headers.TPlo  -fPIC -DPIC -o .libs/headers.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c headers.c -MT headers.lo -MD -MP -MF .deps/headers.TPlo -o headers.o >/dev/null 2>&1
mv -f .libs/headers.lo headers.lo
source='aix_irix_threads.c' object='aix_irix_threads.lo' libtool=yes \
depfile='.deps/aix_irix_threads.Plo' tmpdepfile='.deps/aix_irix_threads.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o aix_irix_threads.lo `test -f 'aix_irix_threads.c' || echo './'`aix_irix_threads.c
rm -f .libs/aix_irix_threads.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c aix_irix_threads.c -MT aix_irix_threads.lo -MD -MP -MF .deps/aix_irix_threads.TPlo  -fPIC -DPIC -o .libs/aix_irix_threads.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c aix_irix_threads.c -MT aix_irix_threads.lo -MD -MP -MF .deps/aix_irix_threads.TPlo -o aix_irix_threads.o >/dev/null 2>&1
mv -f .libs/aix_irix_threads.lo aix_irix_threads.lo
source='malloc.c' object='malloc.lo' libtool=yes \
depfile='.deps/malloc.Plo' tmpdepfile='.deps/malloc.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o malloc.lo `test -f 'malloc.c' || echo './'`malloc.c
rm -f .libs/malloc.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c malloc.c -MT malloc.lo -MD -MP -MF .deps/malloc.TPlo  -fPIC -DPIC -o .libs/malloc.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c malloc.c -MT malloc.lo -MD -MP -MF .deps/malloc.TPlo -o malloc.o >/dev/null 2>&1
mv -f .libs/malloc.lo malloc.lo
source='mallocx.c' object='mallocx.lo' libtool=yes \
depfile='.deps/mallocx.Plo' tmpdepfile='.deps/mallocx.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o mallocx.lo `test -f 'mallocx.c' || echo './'`mallocx.c
rm -f .libs/mallocx.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c mallocx.c -MT mallocx.lo -MD -MP -MF .deps/mallocx.TPlo  -fPIC -DPIC -o .libs/mallocx.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c mallocx.c -MT mallocx.lo -MD -MP -MF .deps/mallocx.TPlo -o mallocx.o >/dev/null 2>&1
mv -f .libs/mallocx.lo mallocx.lo
source='mark.c' object='mark.lo' libtool=yes \
depfile='.deps/mark.Plo' tmpdepfile='.deps/mark.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o mark.lo `test -f 'mark.c' || echo './'`mark.c
rm -f .libs/mark.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c mark.c -MT mark.lo -MD -MP -MF .deps/mark.TPlo  -fPIC -DPIC -o .libs/mark.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c mark.c -MT mark.lo -MD -MP -MF .deps/mark.TPlo -o mark.o >/dev/null 2>&1
mv -f .libs/mark.lo mark.lo
source='mark_rts.c' object='mark_rts.lo' libtool=yes \
depfile='.deps/mark_rts.Plo' tmpdepfile='.deps/mark_rts.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o mark_rts.lo `test -f 'mark_rts.c' || echo './'`mark_rts.c
rm -f .libs/mark_rts.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c mark_rts.c -MT mark_rts.lo -MD -MP -MF .deps/mark_rts.TPlo  -fPIC -DPIC -o .libs/mark_rts.lo
mark_rts.c: In function `GC_approx_sp':
mark_rts.c:376: warning: function returns address of local variable
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c mark_rts.c -MT mark_rts.lo -MD -MP -MF .deps/mark_rts.TPlo -o mark_rts.o >/dev/null 2>&1
mv -f .libs/mark_rts.lo mark_rts.lo
source='misc.c' object='misc.lo' libtool=yes \
depfile='.deps/misc.Plo' tmpdepfile='.deps/misc.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o misc.lo `test -f 'misc.c' || echo './'`misc.c
rm -f .libs/misc.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c misc.c -MT misc.lo -MD -MP -MF .deps/misc.TPlo  -fPIC -DPIC -o .libs/misc.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c misc.c -MT misc.lo -MD -MP -MF .deps/misc.TPlo -o misc.o >/dev/null 2>&1
mv -f .libs/misc.lo misc.lo
source='new_hblk.c' object='new_hblk.lo' libtool=yes \
depfile='.deps/new_hblk.Plo' tmpdepfile='.deps/new_hblk.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o new_hblk.lo `test -f 'new_hblk.c' || echo './'`new_hblk.c
rm -f .libs/new_hblk.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c new_hblk.c -MT new_hblk.lo -MD -MP -MF .deps/new_hblk.TPlo  -fPIC -DPIC -o .libs/new_hblk.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c new_hblk.c -MT new_hblk.lo -MD -MP -MF .deps/new_hblk.TPlo -o new_hblk.o >/dev/null 2>&1
mv -f .libs/new_hblk.lo new_hblk.lo
source='obj_map.c' object='obj_map.lo' libtool=yes \
depfile='.deps/obj_map.Plo' tmpdepfile='.deps/obj_map.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o obj_map.lo `test -f 'obj_map.c' || echo './'`obj_map.c
rm -f .libs/obj_map.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c obj_map.c -MT obj_map.lo -MD -MP -MF .deps/obj_map.TPlo  -fPIC -DPIC -o .libs/obj_map.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c obj_map.c -MT obj_map.lo -MD -MP -MF .deps/obj_map.TPlo -o obj_map.o >/dev/null 2>&1
mv -f .libs/obj_map.lo obj_map.lo
source='os_dep.c' object='os_dep.lo' libtool=yes \
depfile='.deps/os_dep.Plo' tmpdepfile='.deps/os_dep.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o os_dep.lo `test -f 'os_dep.c' || echo './'`os_dep.c
rm -f .libs/os_dep.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c os_dep.c -MT os_dep.lo -MD -MP -MF .deps/os_dep.TPlo  -fPIC -DPIC -o .libs/os_dep.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c os_dep.c -MT os_dep.lo -MD -MP -MF .deps/os_dep.TPlo -o os_dep.o >/dev/null 2>&1
mv -f .libs/os_dep.lo os_dep.lo
source='pcr_interface.c' object='pcr_interface.lo' libtool=yes \
depfile='.deps/pcr_interface.Plo' tmpdepfile='.deps/pcr_interface.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o pcr_interface.lo `test -f 'pcr_interface.c' || echo './'`pcr_interface.c
rm -f .libs/pcr_interface.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c pcr_interface.c -MT pcr_interface.lo -MD -MP -MF .deps/pcr_interface.TPlo  -fPIC -DPIC -o .libs/pcr_interface.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c pcr_interface.c -MT pcr_interface.lo -MD -MP -MF .deps/pcr_interface.TPlo -o pcr_interface.o >/dev/null 2>&1
mv -f .libs/pcr_interface.lo pcr_interface.lo
source='ptr_chck.c' object='ptr_chck.lo' libtool=yes \
depfile='.deps/ptr_chck.Plo' tmpdepfile='.deps/ptr_chck.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o ptr_chck.lo `test -f 'ptr_chck.c' || echo './'`ptr_chck.c
rm -f .libs/ptr_chck.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c ptr_chck.c -MT ptr_chck.lo -MD -MP -MF .deps/ptr_chck.TPlo  -fPIC -DPIC -o .libs/ptr_chck.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c ptr_chck.c -MT ptr_chck.lo -MD -MP -MF .deps/ptr_chck.TPlo -o ptr_chck.o >/dev/null 2>&1
mv -f .libs/ptr_chck.lo ptr_chck.lo
source='real_malloc.c' object='real_malloc.lo' libtool=yes \
depfile='.deps/real_malloc.Plo' tmpdepfile='.deps/real_malloc.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o real_malloc.lo `test -f 'real_malloc.c' || echo './'`real_malloc.c
rm -f .libs/real_malloc.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c real_malloc.c -MT real_malloc.lo -MD -MP -MF .deps/real_malloc.TPlo  -fPIC -DPIC -o .libs/real_malloc.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c real_malloc.c -MT real_malloc.lo -MD -MP -MF .deps/real_malloc.TPlo -o real_malloc.o >/dev/null 2>&1
mv -f .libs/real_malloc.lo real_malloc.lo
source='reclaim.c' object='reclaim.lo' libtool=yes \
depfile='.deps/reclaim.Plo' tmpdepfile='.deps/reclaim.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o reclaim.lo `test -f 'reclaim.c' || echo './'`reclaim.c
rm -f .libs/reclaim.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c reclaim.c -MT reclaim.lo -MD -MP -MF .deps/reclaim.TPlo  -fPIC -DPIC -o .libs/reclaim.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c reclaim.c -MT reclaim.lo -MD -MP -MF .deps/reclaim.TPlo -o reclaim.o >/dev/null 2>&1
mv -f .libs/reclaim.lo reclaim.lo
source='solaris_pthreads.c' object='solaris_pthreads.lo' libtool=yes \
depfile='.deps/solaris_pthreads.Plo' tmpdepfile='.deps/solaris_pthreads.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o solaris_pthreads.lo `test -f 'solaris_pthreads.c' || echo './'`solaris_pthreads.c
rm -f .libs/solaris_pthreads.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c solaris_pthreads.c -MT solaris_pthreads.lo -MD -MP -MF .deps/solaris_pthreads.TPlo  -fPIC -DPIC -o .libs/solaris_pthreads.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c solaris_pthreads.c -MT solaris_pthreads.lo -MD -MP -MF .deps/solaris_pthreads.TPlo -o solaris_pthreads.o >/dev/null 2>&1
mv -f .libs/solaris_pthreads.lo solaris_pthreads.lo
source='solaris_threads.c' object='solaris_threads.lo' libtool=yes \
depfile='.deps/solaris_threads.Plo' tmpdepfile='.deps/solaris_threads.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o solaris_threads.lo `test -f 'solaris_threads.c' || echo './'`solaris_threads.c
rm -f .libs/solaris_threads.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c solaris_threads.c -MT solaris_threads.lo -MD -MP -MF .deps/solaris_threads.TPlo  -fPIC -DPIC -o .libs/solaris_threads.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c solaris_threads.c -MT solaris_threads.lo -MD -MP -MF .deps/solaris_threads.TPlo -o solaris_threads.o >/dev/null 2>&1
mv -f .libs/solaris_threads.lo solaris_threads.lo
source='specific.c' object='specific.lo' libtool=yes \
depfile='.deps/specific.Plo' tmpdepfile='.deps/specific.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o specific.lo `test -f 'specific.c' || echo './'`specific.c
rm -f .libs/specific.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c specific.c -MT specific.lo -MD -MP -MF .deps/specific.TPlo  -fPIC -DPIC -o .libs/specific.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c specific.c -MT specific.lo -MD -MP -MF .deps/specific.TPlo -o specific.o >/dev/null 2>&1
mv -f .libs/specific.lo specific.lo
source='stubborn.c' object='stubborn.lo' libtool=yes \
depfile='.deps/stubborn.Plo' tmpdepfile='.deps/stubborn.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o stubborn.lo `test -f 'stubborn.c' || echo './'`stubborn.c
rm -f .libs/stubborn.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c stubborn.c -MT stubborn.lo -MD -MP -MF .deps/stubborn.TPlo  -fPIC -DPIC -o .libs/stubborn.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c stubborn.c -MT stubborn.lo -MD -MP -MF .deps/stubborn.TPlo -o stubborn.o >/dev/null 2>&1
mv -f .libs/stubborn.lo stubborn.lo
source='typd_mlc.c' object='typd_mlc.lo' libtool=yes \
depfile='.deps/typd_mlc.Plo' tmpdepfile='.deps/typd_mlc.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o typd_mlc.lo `test -f 'typd_mlc.c' || echo './'`typd_mlc.c
rm -f .libs/typd_mlc.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c typd_mlc.c -MT typd_mlc.lo -MD -MP -MF .deps/typd_mlc.TPlo  -fPIC -DPIC -o .libs/typd_mlc.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c typd_mlc.c -MT typd_mlc.lo -MD -MP -MF .deps/typd_mlc.TPlo -o typd_mlc.o >/dev/null 2>&1
mv -f .libs/typd_mlc.lo typd_mlc.lo
source='backgraph.c' object='backgraph.lo' libtool=yes \
depfile='.deps/backgraph.Plo' tmpdepfile='.deps/backgraph.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o backgraph.lo `test -f 'backgraph.c' || echo './'`backgraph.c
rm -f .libs/backgraph.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c backgraph.c -MT backgraph.lo -MD -MP -MF .deps/backgraph.TPlo  -fPIC -DPIC -o .libs/backgraph.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c backgraph.c -MT backgraph.lo -MD -MP -MF .deps/backgraph.TPlo -o backgraph.o >/dev/null 2>&1
mv -f .libs/backgraph.lo backgraph.lo
source='win32_threads.c' object='win32_threads.lo' libtool=yes \
depfile='.deps/win32_threads.Plo' tmpdepfile='.deps/win32_threads.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o win32_threads.lo `test -f 'win32_threads.c' || echo './'`win32_threads.c
rm -f .libs/win32_threads.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c win32_threads.c -MT win32_threads.lo -MD -MP -MF .deps/win32_threads.TPlo  -fPIC -DPIC -o .libs/win32_threads.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c win32_threads.c -MT win32_threads.lo -MD -MP -MF .deps/win32_threads.TPlo -o win32_threads.o >/dev/null 2>&1
mv -f .libs/win32_threads.lo win32_threads.lo
source='pthread_support.c' object='pthread_support.lo' libtool=yes \
depfile='.deps/pthread_support.Plo' tmpdepfile='.deps/pthread_support.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o pthread_support.lo `test -f 'pthread_support.c' || echo './'`pthread_support.c
rm -f .libs/pthread_support.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c pthread_support.c -MT pthread_support.lo -MD -MP -MF .deps/pthread_support.TPlo  -fPIC -DPIC -o .libs/pthread_support.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c pthread_support.c -MT pthread_support.lo -MD -MP -MF .deps/pthread_support.TPlo -o pthread_support.o >/dev/null 2>&1
mv -f .libs/pthread_support.lo pthread_support.lo
source='pthread_stop_world.c' object='pthread_stop_world.lo' libtool=yes \
depfile='.deps/pthread_stop_world.Plo' tmpdepfile='.deps/pthread_stop_world.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o pthread_stop_world.lo `test -f 'pthread_stop_world.c' || echo './'`pthread_stop_world.c
rm -f .libs/pthread_stop_world.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c pthread_stop_world.c -MT pthread_stop_world.lo -MD -MP -MF .deps/pthread_stop_world.TPlo  -fPIC -DPIC -o .libs/pthread_stop_world.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c pthread_stop_world.c -MT pthread_stop_world.lo -MD -MP -MF .deps/pthread_stop_world.TPlo -o pthread_stop_world.o >/dev/null 2>&1
mv -f .libs/pthread_stop_world.lo pthread_stop_world.lo
source='darwin_stop_world.c' object='darwin_stop_world.lo' libtool=yes \
depfile='.deps/darwin_stop_world.Plo' tmpdepfile='.deps/darwin_stop_world.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o darwin_stop_world.lo `test -f 'darwin_stop_world.c' || echo './'`darwin_stop_world.c
rm -f .libs/darwin_stop_world.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c darwin_stop_world.c -MT darwin_stop_world.lo -MD -MP -MF .deps/darwin_stop_world.TPlo  -fPIC -DPIC -o .libs/darwin_stop_world.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c darwin_stop_world.c -MT darwin_stop_world.lo -MD -MP -MF .deps/darwin_stop_world.TPlo -o darwin_stop_world.o >/dev/null 2>&1
mv -f .libs/darwin_stop_world.lo darwin_stop_world.lo
source='mach_dep.c' object='mach_dep.lo' libtool=yes \
depfile='.deps/mach_dep.Plo' tmpdepfile='.deps/mach_dep.TPlo' \
depmode=gcc3 /bin/sh ./depcomp \
/bin/sh ./libtool --mode=compile cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" -DPACKAGE_STRING=\"libgc-mono\ 6.3alpha6\" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1  -I./include -lpthread -I./include  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions  -c -o mach_dep.lo `test -f 'mach_dep.c' || echo './'`mach_dep.c
rm -f .libs/mach_dep.lo
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c mach_dep.c -MT mach_dep.lo -MD -MP -MF .deps/mach_dep.TPlo  -fPIC -DPIC -o .libs/mach_dep.lo
cc: -lpthread: linker input file unused because linking not done
cc -DPACKAGE_NAME=\"libgc-mono\" -DPACKAGE_TARNAME=\"libgc-mono\" -DPACKAGE_VERSION=\"6.3alpha6\" "-DPACKAGE_STRING=\"libgc-mono 6.3alpha6\"" -DPACKAGE_BUGREPORT=\"Hans_Boehm at hp.com\" -DGC_FREEBSD_THREADS=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -D_IN_LIBGC=1 -I./include -lpthread -I./include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -fexceptions -O -pipe -march=athlon -fexceptions -c mach_dep.c -MT mach_dep.lo -MD -MP -MF .deps/mach_dep.TPlo -o mach_dep.o >/dev/null 2>&1
mv -f .libs/mach_dep.lo mach_dep.lo
/bin/sh ./libtool --mode=link cc -fexceptions -O -pipe -march=athlon  -o libmonogc.la  -version-info 1:2:0 allchblk.lo alloc.lo blacklst.lo checksums.lo dbg_mlc.lo dyn_load.lo finalize.lo gc_dlopen.lo gcj_mlc.lo headers.lo aix_irix_threads.lo malloc.lo mallocx.lo mark.lo mark_rts.lo misc.lo new_hblk.lo obj_map.lo os_dep.lo pcr_interface.lo ptr_chck.lo real_malloc.lo reclaim.lo solaris_pthreads.lo solaris_threads.lo specific.lo stubborn.lo typd_mlc.lo backgraph.lo win32_threads.lo pthread_support.lo pthread_stop_world.lo darwin_stop_world.lo  mach_dep.lo -lpthread  
libtool: link: warning: `-version-info' is ignored for convenience libraries
rm -fr .libs/libmonogc.la .libs/libmonogc.* .libs/libmonogc.*
ar cru .libs/libmonogc.al allchblk.lo alloc.lo blacklst.lo checksums.lo dbg_mlc.lo dyn_load.lo finalize.lo gc_dlopen.lo gcj_mlc.lo headers.lo aix_irix_threads.lo malloc.lo mallocx.lo mark.lo mark_rts.lo misc.lo new_hblk.lo obj_map.lo os_dep.lo pcr_interface.lo ptr_chck.lo real_malloc.lo reclaim.lo solaris_pthreads.lo solaris_threads.lo specific.lo stubborn.lo typd_mlc.lo backgraph.lo win32_threads.lo pthread_support.lo pthread_stop_world.lo darwin_stop_world.lo mach_dep.lo
ranlib .libs/libmonogc.al
creating libmonogc.la
(cd .libs && rm -f libmonogc.la && ln -s ../libmonogc.la libmonogc.la)
gmake[3]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/libgc'
gmake[2]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/libgc'
Making all in mono
gmake[2]: Entering directory `/usr/ports/local/mono/work/mono-0.96/mono'
Making all in utils
gmake[3]: Entering directory `/usr/ports/local/mono/work/mono-0.96/mono/utils'
source='mono-hash.c' object='mono-hash.lo' libtool=yes \
depfile='.deps/mono-hash.Plo' tmpdepfile='.deps/mono-hash.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o mono-hash.lo `test -f 'mono-hash.c' || echo './'`mono-hash.c
mkdir .libs
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-hash.c -MT mono-hash.lo -MD -MP -MF .deps/mono-hash.TPlo  -fPIC -DPIC -o .libs/mono-hash.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-hash.c -MT mono-hash.lo -MD -MP -MF .deps/mono-hash.TPlo -o mono-hash.o >/dev/null 2>&1
mv -f .libs/mono-hash.lo mono-hash.lo
source='mono-md5.c' object='mono-md5.lo' libtool=yes \
depfile='.deps/mono-md5.Plo' tmpdepfile='.deps/mono-md5.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o mono-md5.lo `test -f 'mono-md5.c' || echo './'`mono-md5.c
rm -f .libs/mono-md5.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-md5.c -MT mono-md5.lo -MD -MP -MF .deps/mono-md5.TPlo  -fPIC -DPIC -o .libs/mono-md5.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-md5.c -MT mono-md5.lo -MD -MP -MF .deps/mono-md5.TPlo -o mono-md5.o >/dev/null 2>&1
mv -f .libs/mono-md5.lo mono-md5.lo
source='mono-sha1.c' object='mono-sha1.lo' libtool=yes \
depfile='.deps/mono-sha1.Plo' tmpdepfile='.deps/mono-sha1.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o mono-sha1.lo `test -f 'mono-sha1.c' || echo './'`mono-sha1.c
rm -f .libs/mono-sha1.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-sha1.c -MT mono-sha1.lo -MD -MP -MF .deps/mono-sha1.TPlo  -fPIC -DPIC -o .libs/mono-sha1.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-sha1.c -MT mono-sha1.lo -MD -MP -MF .deps/mono-sha1.TPlo -o mono-sha1.o >/dev/null 2>&1
mv -f .libs/mono-sha1.lo mono-sha1.lo
source='mono-logger.c' object='mono-logger.lo' libtool=yes \
depfile='.deps/mono-logger.Plo' tmpdepfile='.deps/mono-logger.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o mono-logger.lo `test -f 'mono-logger.c' || echo './'`mono-logger.c
rm -f .libs/mono-logger.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-logger.c -MT mono-logger.lo -MD -MP -MF .deps/mono-logger.TPlo  -fPIC -DPIC -o .libs/mono-logger.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-logger.c -MT mono-logger.lo -MD -MP -MF .deps/mono-logger.TPlo -o mono-logger.o >/dev/null 2>&1
mv -f .libs/mono-logger.lo mono-logger.lo
source='mono-codeman.c' object='mono-codeman.lo' libtool=yes \
depfile='.deps/mono-codeman.Plo' tmpdepfile='.deps/mono-codeman.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o mono-codeman.lo `test -f 'mono-codeman.c' || echo './'`mono-codeman.c
rm -f .libs/mono-codeman.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-codeman.c -MT mono-codeman.lo -MD -MP -MF .deps/mono-codeman.TPlo  -fPIC -DPIC -o .libs/mono-codeman.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-codeman.c -MT mono-codeman.lo -MD -MP -MF .deps/mono-codeman.TPlo -o mono-codeman.o >/dev/null 2>&1
mv -f .libs/mono-codeman.lo mono-codeman.lo
source='monobitset.c' object='monobitset.lo' libtool=yes \
depfile='.deps/monobitset.Plo' tmpdepfile='.deps/monobitset.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o monobitset.lo `test -f 'monobitset.c' || echo './'`monobitset.c
rm -f .libs/monobitset.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c monobitset.c -MT monobitset.lo -MD -MP -MF .deps/monobitset.TPlo  -fPIC -DPIC -o .libs/monobitset.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c monobitset.c -MT monobitset.lo -MD -MP -MF .deps/monobitset.TPlo -o monobitset.o >/dev/null 2>&1
mv -f .libs/monobitset.lo monobitset.lo
source='mono-math.c' object='mono-math.lo' libtool=yes \
depfile='.deps/mono-math.Plo' tmpdepfile='.deps/mono-math.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o mono-math.lo `test -f 'mono-math.c' || echo './'`mono-math.c
rm -f .libs/mono-math.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-math.c -MT mono-math.lo -MD -MP -MF .deps/mono-math.TPlo  -fPIC -DPIC -o .libs/mono-math.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-math.c -MT mono-math.lo -MD -MP -MF .deps/mono-math.TPlo -o mono-math.o >/dev/null 2>&1
mv -f .libs/mono-math.lo mono-math.lo
source='strtod.c' object='strtod.lo' libtool=yes \
depfile='.deps/strtod.Plo' tmpdepfile='.deps/strtod.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o strtod.lo `test -f 'strtod.c' || echo './'`strtod.c
rm -f .libs/strtod.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c strtod.c -MT strtod.lo -MD -MP -MF .deps/strtod.TPlo  -fPIC -DPIC -o .libs/strtod.lo
strtod.c: In function `__bsd_dtoa':
strtod.c:1927: warning: `ilim' might be used uninitialized in this function
strtod.c:1927: warning: `ilim1' might be used uninitialized in this function
strtod.c:1929: warning: `spec_case' might be used uninitialized in this function
strtod.c:1935: warning: `mlo' might be used uninitialized in this function
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c strtod.c -MT strtod.lo -MD -MP -MF .deps/strtod.TPlo -o strtod.o >/dev/null 2>&1
mv -f .libs/strtod.lo strtod.lo
source='strenc.c' object='strenc.lo' libtool=yes \
depfile='.deps/strenc.Plo' tmpdepfile='.deps/strenc.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o strenc.lo `test -f 'strenc.c' || echo './'`strenc.c
rm -f .libs/strenc.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c strenc.c -MT strenc.lo -MD -MP -MF .deps/strenc.TPlo  -fPIC -DPIC -o .libs/strenc.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c strenc.c -MT strenc.lo -MD -MP -MF .deps/strenc.TPlo -o strenc.o >/dev/null 2>&1
mv -f .libs/strenc.lo strenc.lo
source='mono-uri.c' object='mono-uri.lo' libtool=yes \
depfile='.deps/mono-uri.Plo' tmpdepfile='.deps/mono-uri.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o mono-uri.lo `test -f 'mono-uri.c' || echo './'`mono-uri.c
rm -f .libs/mono-uri.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-uri.c -MT mono-uri.lo -MD -MP -MF .deps/mono-uri.TPlo  -fPIC -DPIC -o .libs/mono-uri.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-uri.c -MT mono-uri.lo -MD -MP -MF .deps/mono-uri.TPlo -o mono-uri.o >/dev/null 2>&1
mv -f .libs/mono-uri.lo mono-uri.lo
/bin/sh ../../libtool --mode=link cc  -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings  -lpthread -o libmonoutils.la   mono-hash.lo mono-md5.lo mono-sha1.lo mono-logger.lo mono-codeman.lo monobitset.lo mono-math.lo strtod.lo strenc.lo mono-uri.lo  -lpthread -lm
rm -fr .libs/libmonoutils.la .libs/libmonoutils.* .libs/libmonoutils.*
ar cru .libs/libmonoutils.al mono-hash.lo mono-md5.lo mono-sha1.lo mono-logger.lo mono-codeman.lo monobitset.lo mono-math.lo strtod.lo strenc.lo mono-uri.lo
ranlib .libs/libmonoutils.al
creating libmonoutils.la
(cd .libs && rm -f libmonoutils.la && ln -s ../libmonoutils.la libmonoutils.la)
gmake[3]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/mono/utils'
Making all in io-layer
gmake[3]: Entering directory `/usr/ports/local/mono/work/mono-0.96/mono/io-layer'
source='atomic.c' object='atomic.lo' libtool=yes \
depfile='.deps/atomic.Plo' tmpdepfile='.deps/atomic.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../libgc/include -DMONO_BINDIR=\""/usr/local/bin"\" -I../..	  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o atomic.lo `test -f 'atomic.c' || echo './'`atomic.c
mkdir .libs
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c atomic.c -MT atomic.lo -MD -MP -MF .deps/atomic.TPlo  -fPIC -DPIC -o .libs/atomic.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c atomic.c -MT atomic.lo -MD -MP -MF .deps/atomic.TPlo -o atomic.o >/dev/null 2>&1
mv -f .libs/atomic.lo atomic.lo
source='context.c' object='context.lo' libtool=yes \
depfile='.deps/context.Plo' tmpdepfile='.deps/context.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../libgc/include -DMONO_BINDIR=\""/usr/local/bin"\" -I../..	  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o context.lo `test -f 'context.c' || echo './'`context.c
rm -f .libs/context.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c context.c -MT context.lo -MD -MP -MF .deps/context.TPlo  -fPIC -DPIC -o .libs/context.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c context.c -MT context.lo -MD -MP -MF .deps/context.TPlo -o context.o >/dev/null 2>&1
mv -f .libs/context.lo context.lo
source='critical-sections.c' object='critical-sections.lo' libtool=yes \
depfile='.deps/critical-sections.Plo' tmpdepfile='.deps/critical-sections.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../libgc/include -DMONO_BINDIR=\""/usr/local/bin"\" -I../..	  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o critical-sections.lo `test -f 'critical-sections.c' || echo './'`critical-sections.c
rm -f .libs/critical-sections.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c critical-sections.c -MT critical-sections.lo -MD -MP -MF .deps/critical-sections.TPlo  -fPIC -DPIC -o .libs/critical-sections.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c critical-sections.c -MT critical-sections.lo -MD -MP -MF .deps/critical-sections.TPlo -o critical-sections.o >/dev/null 2>&1
mv -f .libs/critical-sections.lo critical-sections.lo
source='daemon.c' object='daemon.lo' libtool=yes \
depfile='.deps/daemon.Plo' tmpdepfile='.deps/daemon.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../libgc/include -DMONO_BINDIR=\""/usr/local/bin"\" -I../..	  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o daemon.lo `test -f 'daemon.c' || echo './'`daemon.c
rm -f .libs/daemon.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c daemon.c -MT daemon.lo -MD -MP -MF .deps/daemon.TPlo  -fPIC -DPIC -o .libs/daemon.lo
daemon.c: In function `startup':
daemon.c:257: warning: long int format, time_t arg (arg 6)
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c daemon.c -MT daemon.lo -MD -MP -MF .deps/daemon.TPlo -o daemon.o >/dev/null 2>&1
mv -f .libs/daemon.lo daemon.lo
source='daemon-messages.c' object='daemon-messages.lo' libtool=yes \
depfile='.deps/daemon-messages.Plo' tmpdepfile='.deps/daemon-messages.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../libgc/include -DMONO_BINDIR=\""/usr/local/bin"\" -I../..	  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o daemon-messages.lo `test -f 'daemon-messages.c' || echo './'`daemon-messages.c
rm -f .libs/daemon-messages.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c daemon-messages.c -MT daemon-messages.lo -MD -MP -MF .deps/daemon-messages.TPlo  -fPIC -DPIC -o .libs/daemon-messages.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c daemon-messages.c -MT daemon-messages.lo -MD -MP -MF .deps/daemon-messages.TPlo -o daemon-messages.o >/dev/null 2>&1
mv -f .libs/daemon-messages.lo daemon-messages.lo
source='error.c' object='error.lo' libtool=yes \
depfile='.deps/error.Plo' tmpdepfile='.deps/error.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../libgc/include -DMONO_BINDIR=\""/usr/local/bin"\" -I../..	  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o error.lo `test -f 'error.c' || echo './'`error.c
rm -f .libs/error.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c error.c -MT error.lo -MD -MP -MF .deps/error.TPlo  -fPIC -DPIC -o .libs/error.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c error.c -MT error.lo -MD -MP -MF .deps/error.TPlo -o error.o >/dev/null 2>&1
mv -f .libs/error.lo error.lo
source='events.c' object='events.lo' libtool=yes \
depfile='.deps/events.Plo' tmpdepfile='.deps/events.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../libgc/include -DMONO_BINDIR=\""/usr/local/bin"\" -I../..	  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o events.lo `test -f 'events.c' || echo './'`events.c
rm -f .libs/events.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c events.c -MT events.lo -MD -MP -MF .deps/events.TPlo  -fPIC -DPIC -o .libs/events.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c events.c -MT events.lo -MD -MP -MF .deps/events.TPlo -o events.o >/dev/null 2>&1
mv -f .libs/events.lo events.lo
source='handles.c' object='handles.lo' libtool=yes \
depfile='.deps/handles.Plo' tmpdepfile='.deps/handles.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../libgc/include -DMONO_BINDIR=\""/usr/local/bin"\" -I../..	  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o handles.lo `test -f 'handles.c' || echo './'`handles.c
rm -f .libs/handles.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c handles.c -MT handles.lo -MD -MP -MF .deps/handles.TPlo  -fPIC -DPIC -o .libs/handles.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c handles.c -MT handles.lo -MD -MP -MF .deps/handles.TPlo -o handles.o >/dev/null 2>&1
mv -f .libs/handles.lo handles.lo
source='io.c' object='io.lo' libtool=yes \
depfile='.deps/io.Plo' tmpdepfile='.deps/io.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../libgc/include -DMONO_BINDIR=\""/usr/local/bin"\" -I../..	  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o io.lo `test -f 'io.c' || echo './'`io.c
rm -f .libs/io.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c io.c -MT io.lo -MD -MP -MF .deps/io.TPlo  -fPIC -DPIC -o .libs/io.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c io.c -MT io.lo -MD -MP -MF .deps/io.TPlo -o io.o >/dev/null 2>&1
mv -f .libs/io.lo io.lo
source='misc.c' object='misc.lo' libtool=yes \
depfile='.deps/misc.Plo' tmpdepfile='.deps/misc.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../libgc/include -DMONO_BINDIR=\""/usr/local/bin"\" -I../..	  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o misc.lo `test -f 'misc.c' || echo './'`misc.c
rm -f .libs/misc.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c misc.c -MT misc.lo -MD -MP -MF .deps/misc.TPlo  -fPIC -DPIC -o .libs/misc.lo
misc.c: In function `_wapi_g_renew0':
misc.c:36: warning: implicit declaration of function `memcpy'
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c misc.c -MT misc.lo -MD -MP -MF .deps/misc.TPlo -o misc.o >/dev/null 2>&1
mv -f .libs/misc.lo misc.lo
source='mutexes.c' object='mutexes.lo' libtool=yes \
depfile='.deps/mutexes.Plo' tmpdepfile='.deps/mutexes.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../libgc/include -DMONO_BINDIR=\""/usr/local/bin"\" -I../..	  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o mutexes.lo `test -f 'mutexes.c' || echo './'`mutexes.c
rm -f .libs/mutexes.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mutexes.c -MT mutexes.lo -MD -MP -MF .deps/mutexes.TPlo  -fPIC -DPIC -o .libs/mutexes.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mutexes.c -MT mutexes.lo -MD -MP -MF .deps/mutexes.TPlo -o mutexes.o >/dev/null 2>&1
mv -f .libs/mutexes.lo mutexes.lo
source='mono-mutex.c' object='mono-mutex.lo' libtool=yes \
depfile='.deps/mono-mutex.Plo' tmpdepfile='.deps/mono-mutex.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../libgc/include -DMONO_BINDIR=\""/usr/local/bin"\" -I../..	  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o mono-mutex.lo `test -f 'mono-mutex.c' || echo './'`mono-mutex.c
rm -f .libs/mono-mutex.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-mutex.c -MT mono-mutex.lo -MD -MP -MF .deps/mono-mutex.TPlo  -fPIC -DPIC -o .libs/mono-mutex.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-mutex.c -MT mono-mutex.lo -MD -MP -MF .deps/mono-mutex.TPlo -o mono-mutex.o >/dev/null 2>&1
mv -f .libs/mono-mutex.lo mono-mutex.lo
source='processes.c' object='processes.lo' libtool=yes \
depfile='.deps/processes.Plo' tmpdepfile='.deps/processes.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../libgc/include -DMONO_BINDIR=\""/usr/local/bin"\" -I../..	  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o processes.lo `test -f 'processes.c' || echo './'`processes.c
rm -f .libs/processes.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c processes.c -MT processes.lo -MD -MP -MF .deps/processes.TPlo  -fPIC -DPIC -o .libs/processes.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c processes.c -MT processes.lo -MD -MP -MF .deps/processes.TPlo -o processes.o >/dev/null 2>&1
mv -f .libs/processes.lo processes.lo
source='security.c' object='security.lo' libtool=yes \
depfile='.deps/security.Plo' tmpdepfile='.deps/security.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../libgc/include -DMONO_BINDIR=\""/usr/local/bin"\" -I../..	  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o security.lo `test -f 'security.c' || echo './'`security.c
rm -f .libs/security.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c security.c -MT security.lo -MD -MP -MF .deps/security.TPlo  -fPIC -DPIC -o .libs/security.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c security.c -MT security.lo -MD -MP -MF .deps/security.TPlo -o security.o >/dev/null 2>&1
mv -f .libs/security.lo security.lo
source='semaphores.c' object='semaphores.lo' libtool=yes \
depfile='.deps/semaphores.Plo' tmpdepfile='.deps/semaphores.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../libgc/include -DMONO_BINDIR=\""/usr/local/bin"\" -I../..	  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o semaphores.lo `test -f 'semaphores.c' || echo './'`semaphores.c
rm -f .libs/semaphores.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c semaphores.c -MT semaphores.lo -MD -MP -MF .deps/semaphores.TPlo  -fPIC -DPIC -o .libs/semaphores.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c semaphores.c -MT semaphores.lo -MD -MP -MF .deps/semaphores.TPlo -o semaphores.o >/dev/null 2>&1
mv -f .libs/semaphores.lo semaphores.lo
source='shared.c' object='shared.lo' libtool=yes \
depfile='.deps/shared.Plo' tmpdepfile='.deps/shared.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../libgc/include -DMONO_BINDIR=\""/usr/local/bin"\" -I../..	  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o shared.lo `test -f 'shared.c' || echo './'`shared.c
rm -f .libs/shared.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c shared.c -MT shared.lo -MD -MP -MF .deps/shared.TPlo  -fPIC -DPIC -o .libs/shared.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c shared.c -MT shared.lo -MD -MP -MF .deps/shared.TPlo -o shared.o >/dev/null 2>&1
mv -f .libs/shared.lo shared.lo
source='sockets.c' object='sockets.lo' libtool=yes \
depfile='.deps/sockets.Plo' tmpdepfile='.deps/sockets.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../libgc/include -DMONO_BINDIR=\""/usr/local/bin"\" -I../..	  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o sockets.lo `test -f 'sockets.c' || echo './'`sockets.c
rm -f .libs/sockets.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c sockets.c -MT sockets.lo -MD -MP -MF .deps/sockets.TPlo  -fPIC -DPIC -o .libs/sockets.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c sockets.c -MT sockets.lo -MD -MP -MF .deps/sockets.TPlo -o sockets.o >/dev/null 2>&1
mv -f .libs/sockets.lo sockets.lo
source='system.c' object='system.lo' libtool=yes \
depfile='.deps/system.Plo' tmpdepfile='.deps/system.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../libgc/include -DMONO_BINDIR=\""/usr/local/bin"\" -I../..	  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o system.lo `test -f 'system.c' || echo './'`system.c
rm -f .libs/system.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c system.c -MT system.lo -MD -MP -MF .deps/system.TPlo  -fPIC -DPIC -o .libs/system.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c system.c -MT system.lo -MD -MP -MF .deps/system.TPlo -o system.o >/dev/null 2>&1
mv -f .libs/system.lo system.lo
source='threads.c' object='threads.lo' libtool=yes \
depfile='.deps/threads.Plo' tmpdepfile='.deps/threads.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../libgc/include -DMONO_BINDIR=\""/usr/local/bin"\" -I../..	  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o threads.lo `test -f 'threads.c' || echo './'`threads.c
rm -f .libs/threads.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c threads.c -MT threads.lo -MD -MP -MF .deps/threads.TPlo  -fPIC -DPIC -o .libs/threads.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c threads.c -MT threads.lo -MD -MP -MF .deps/threads.TPlo -o threads.o >/dev/null 2>&1
mv -f .libs/threads.lo threads.lo
source='timefuncs.c' object='timefuncs.lo' libtool=yes \
depfile='.deps/timefuncs.Plo' tmpdepfile='.deps/timefuncs.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../libgc/include -DMONO_BINDIR=\""/usr/local/bin"\" -I../..	  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o timefuncs.lo `test -f 'timefuncs.c' || echo './'`timefuncs.c
rm -f .libs/timefuncs.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c timefuncs.c -MT timefuncs.lo -MD -MP -MF .deps/timefuncs.TPlo  -fPIC -DPIC -o .libs/timefuncs.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c timefuncs.c -MT timefuncs.lo -MD -MP -MF .deps/timefuncs.TPlo -o timefuncs.o >/dev/null 2>&1
mv -f .libs/timefuncs.lo timefuncs.lo
source='timed-thread.c' object='timed-thread.lo' libtool=yes \
depfile='.deps/timed-thread.Plo' tmpdepfile='.deps/timed-thread.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../libgc/include -DMONO_BINDIR=\""/usr/local/bin"\" -I../..	  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o timed-thread.lo `test -f 'timed-thread.c' || echo './'`timed-thread.c
rm -f .libs/timed-thread.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c timed-thread.c -MT timed-thread.lo -MD -MP -MF .deps/timed-thread.TPlo  -fPIC -DPIC -o .libs/timed-thread.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c timed-thread.c -MT timed-thread.lo -MD -MP -MF .deps/timed-thread.TPlo -o timed-thread.o >/dev/null 2>&1
mv -f .libs/timed-thread.lo timed-thread.lo
source='wait.c' object='wait.lo' libtool=yes \
depfile='.deps/wait.Plo' tmpdepfile='.deps/wait.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../libgc/include -DMONO_BINDIR=\""/usr/local/bin"\" -I../..	  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o wait.lo `test -f 'wait.c' || echo './'`wait.c
rm -f .libs/wait.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c wait.c -MT wait.lo -MD -MP -MF .deps/wait.TPlo  -fPIC -DPIC -o .libs/wait.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../libgc/include -DMONO_BINDIR=\"/usr/local/bin\" -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c wait.c -MT wait.lo -MD -MP -MF .deps/wait.TPlo -o wait.o >/dev/null 2>&1
mv -f .libs/wait.lo wait.lo
/bin/sh ../../libtool --mode=link cc  -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings  -lpthread -o libwapi.la   atomic.lo context.lo critical-sections.lo daemon.lo daemon-messages.lo error.lo events.lo handles.lo io.lo misc.lo mutexes.lo mono-mutex.lo processes.lo security.lo semaphores.lo shared.lo sockets.lo system.lo threads.lo timefuncs.lo timed-thread.lo wait.lo  -lpthread -lm
rm -fr .libs/libwapi.la .libs/libwapi.* .libs/libwapi.*
ar cru .libs/libwapi.al atomic.lo context.lo critical-sections.lo daemon.lo daemon-messages.lo error.lo events.lo handles.lo io.lo misc.lo mutexes.lo mono-mutex.lo processes.lo security.lo semaphores.lo shared.lo sockets.lo system.lo threads.lo timefuncs.lo timed-thread.lo wait.lo
ranlib .libs/libwapi.al
creating libwapi.la
(cd .libs && rm -f libwapi.la && ln -s ../libwapi.la libwapi.la)
gmake[3]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/mono/io-layer'
Making all in monoburg
gmake[3]: Entering directory `/usr/ports/local/mono/work/mono-0.96/mono/monoburg'
bison ./monoburg.y -o parser.c
cc -o monoburg ./monoburg.c parser.c -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I. -lpthread -L/usr/local/lib -lgthread-2.0 -lpthread -lglib-2.0 -liconv  
./monoburg ./sample.brg > sample.c
gmake  all-am
gmake[4]: Entering directory `/usr/ports/local/mono/work/mono-0.96/mono/monoburg'
gmake[4]: Nothing to be done for `all-am'.
gmake[4]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/mono/monoburg'
gmake[3]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/mono/monoburg'
Making all in os
gmake[3]: Entering directory `/usr/ports/local/mono/work/mono-0.96/mono/os'
Making all in unix
gmake[4]: Entering directory `/usr/ports/local/mono/work/mono-0.96/mono/os/unix'
source='util.c' object='util.lo' libtool=yes \
depfile='.deps/util.Plo' tmpdepfile='.deps/util.TPlo' \
depmode=gcc3 /bin/sh ../../../depcomp \
/bin/sh ../../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../..  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o util.lo `test -f 'util.c' || echo './'`util.c
mkdir .libs
cc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c util.c -MT util.lo -MD -MP -MF .deps/util.TPlo  -fPIC -DPIC -o .libs/util.lo
cc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c util.c -MT util.lo -MD -MP -MF .deps/util.TPlo -o util.o >/dev/null 2>&1
mv -f .libs/util.lo util.lo
/bin/sh ../../../libtool --mode=link cc  -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings  -lpthread -o libmonoos.la   util.lo  -lpthread -lm
rm -fr .libs/libmonoos.la .libs/libmonoos.* .libs/libmonoos.*
ar cru .libs/libmonoos.al util.lo
ranlib .libs/libmonoos.al
creating libmonoos.la
(cd .libs && rm -f libmonoos.la && ln -s ../libmonoos.la libmonoos.la)
gmake[4]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/mono/os/unix'
gmake[4]: Entering directory `/usr/ports/local/mono/work/mono-0.96/mono/os'
/bin/sh ../../libtool --mode=link cc  -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings  -lpthread -o libmonoos.la    unix/libmonoos.la -lpthread -lm
mkdir .libs
rm -fr .libs/libmonoos.la .libs/libmonoos.* .libs/libmonoos.*
rm -fr .libs/libmonoos.lax
mkdir .libs/libmonoos.lax
rm -fr .libs/libmonoos.lax/libmonoos.al
mkdir .libs/libmonoos.lax/libmonoos.al
(cd .libs/libmonoos.lax/libmonoos.al && ar x /usr/ports/local/mono/work/mono-0.96/mono/os/unix/.libs/libmonoos.al)
ar cru .libs/libmonoos.al .libs/libmonoos.lax/libmonoos.al/util.lo 
ranlib .libs/libmonoos.al
rm -fr .libs/libmonoos.lax
creating libmonoos.la
(cd .libs && rm -f libmonoos.la && ln -s ../libmonoos.la libmonoos.la)
gmake[4]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/mono/os'
gmake[3]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/mono/os'
Making all in metadata
gmake[3]: Entering directory `/usr/ports/local/mono/work/mono-0.96/mono/metadata'
source='assembly.c' object='assembly.lo' libtool=yes \
depfile='.deps/assembly.Plo' tmpdepfile='.deps/assembly.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o assembly.lo `test -f 'assembly.c' || echo './'`assembly.c
mkdir .libs
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c assembly.c -MT assembly.lo -MD -MP -MF .deps/assembly.TPlo  -fPIC -DPIC -o .libs/assembly.lo
assembly.c: In function `mono_assembly_load_references':
assembly.c:381: warning: passing arg 1 of `g_free' discards qualifiers from pointer target type
assembly.c:386: warning: passing arg 1 of `g_free' discards qualifiers from pointer target type
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c assembly.c -MT assembly.lo -MD -MP -MF .deps/assembly.TPlo -o assembly.o >/dev/null 2>&1
mv -f .libs/assembly.lo assembly.lo
source='domain.c' object='domain.lo' libtool=yes \
depfile='.deps/domain.Plo' tmpdepfile='.deps/domain.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o domain.lo `test -f 'domain.c' || echo './'`domain.c
rm -f .libs/domain.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c domain.c -MT domain.lo -MD -MP -MF .deps/domain.TPlo  -fPIC -DPIC -o .libs/domain.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c domain.c -MT domain.lo -MD -MP -MF .deps/domain.TPlo -o domain.o >/dev/null 2>&1
mv -f .libs/domain.lo domain.lo
source='opcodes.c' object='opcodes.lo' libtool=yes \
depfile='.deps/opcodes.Plo' tmpdepfile='.deps/opcodes.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o opcodes.lo `test -f 'opcodes.c' || echo './'`opcodes.c
rm -f .libs/opcodes.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c opcodes.c -MT opcodes.lo -MD -MP -MF .deps/opcodes.TPlo  -fPIC -DPIC -o .libs/opcodes.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c opcodes.c -MT opcodes.lo -MD -MP -MF .deps/opcodes.TPlo -o opcodes.o >/dev/null 2>&1
mv -f .libs/opcodes.lo opcodes.lo
source='image.c' object='image.lo' libtool=yes \
depfile='.deps/image.Plo' tmpdepfile='.deps/image.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o image.lo `test -f 'image.c' || echo './'`image.c
rm -f .libs/image.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c image.c -MT image.lo -MD -MP -MF .deps/image.TPlo  -fPIC -DPIC -o .libs/image.lo
image.c: In function `mono_image_open':
image.c:873: warning: passing arg 1 of `g_free' discards qualifiers from pointer target type
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c image.c -MT image.lo -MD -MP -MF .deps/image.TPlo -o image.o >/dev/null 2>&1
mv -f .libs/image.lo image.lo
source='metadata.c' object='metadata.lo' libtool=yes \
depfile='.deps/metadata.Plo' tmpdepfile='.deps/metadata.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o metadata.lo `test -f 'metadata.c' || echo './'`metadata.c
rm -f .libs/metadata.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c metadata.c -MT metadata.lo -MD -MP -MF .deps/metadata.TPlo  -fPIC -DPIC -o .libs/metadata.lo
metadata.c: In function `mono_metadata_compute_size':
metadata.c:411: warning: `field_size' might be used uninitialized in this function
metadata.c: In function `mono_metadata_parse_type':
metadata.c:1202: warning: `type' might be used uninitialized in this function
metadata.c: In function `mono_metadata_load_generic_params':
metadata.c:3358: warning: `owner' might be used uninitialized in this function
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c metadata.c -MT metadata.lo -MD -MP -MF .deps/metadata.TPlo -o metadata.o >/dev/null 2>&1
mv -f .libs/metadata.lo metadata.lo
source='verify.c' object='verify.lo' libtool=yes \
depfile='.deps/verify.Plo' tmpdepfile='.deps/verify.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o verify.lo `test -f 'verify.c' || echo './'`verify.c
rm -f .libs/verify.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c verify.c -MT verify.lo -MD -MP -MF .deps/verify.TPlo  -fPIC -DPIC -o .libs/verify.lo
verify.c: In function `mono_method_verify':
verify.c:1146: warning: `target' might be used uninitialized in this function
verify.c:1148: warning: `ip_offset' might be used uninitialized in this function
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c verify.c -MT verify.lo -MD -MP -MF .deps/verify.TPlo -o verify.o >/dev/null 2>&1
mv -f .libs/verify.lo verify.lo
source='mono-endian.c' object='mono-endian.lo' libtool=yes \
depfile='.deps/mono-endian.Plo' tmpdepfile='.deps/mono-endian.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o mono-endian.lo `test -f 'mono-endian.c' || echo './'`mono-endian.c
rm -f .libs/mono-endian.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-endian.c -MT mono-endian.lo -MD -MP -MF .deps/mono-endian.TPlo  -fPIC -DPIC -o .libs/mono-endian.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-endian.c -MT mono-endian.lo -MD -MP -MF .deps/mono-endian.TPlo -o mono-endian.o >/dev/null 2>&1
mv -f .libs/mono-endian.lo mono-endian.lo
source='mono-config.c' object='mono-config.lo' libtool=yes \
depfile='.deps/mono-config.Plo' tmpdepfile='.deps/mono-config.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o mono-config.lo `test -f 'mono-config.c' || echo './'`mono-config.c
rm -f .libs/mono-config.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-config.c -MT mono-config.lo -MD -MP -MF .deps/mono-config.TPlo  -fPIC -DPIC -o .libs/mono-config.lo
mono-config.c: In function `mono_install_get_config_dir':
mono-config.c:341: warning: assignment discards qualifiers from pointer target type
mono-config.c:345: warning: assignment discards qualifiers from pointer target type
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-config.c -MT mono-config.lo -MD -MP -MF .deps/mono-config.TPlo -o mono-config.o >/dev/null 2>&1
mv -f .libs/mono-config.lo mono-config.lo
source='rawbuffer.c' object='rawbuffer.lo' libtool=yes \
depfile='.deps/rawbuffer.Plo' tmpdepfile='.deps/rawbuffer.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o rawbuffer.lo `test -f 'rawbuffer.c' || echo './'`rawbuffer.c
rm -f .libs/rawbuffer.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c rawbuffer.c -MT rawbuffer.lo -MD -MP -MF .deps/rawbuffer.TPlo  -fPIC -DPIC -o .libs/rawbuffer.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c rawbuffer.c -MT rawbuffer.lo -MD -MP -MF .deps/rawbuffer.TPlo -o rawbuffer.o >/dev/null 2>&1
mv -f .libs/rawbuffer.lo rawbuffer.lo
source='loader.c' object='loader.lo' libtool=yes \
depfile='.deps/loader.Plo' tmpdepfile='.deps/loader.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o loader.lo `test -f 'loader.c' || echo './'`loader.c
rm -f .libs/loader.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c loader.c -MT loader.lo -MD -MP -MF .deps/loader.TPlo  -fPIC -DPIC -o .libs/loader.lo
loader.c: In function `method_from_memberref':
loader.c:322: warning: unused variable `bcols'
loader.c:323: warning: unused variable `len'
loader.c: In function `mono_get_method_constrained':
loader.c:867: warning: unused variable `i'
loader.c: In function `mono_loader_wine_init':
loader.c:1124: warning: function declaration isn't a prototype
loader.c:1131: warning: passing arg 3 of `g_module_symbol' from incompatible pointer type
loader.c: At top level:
loader.c:551: warning: `mono_dllmap_free' defined but not used
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c loader.c -MT loader.lo -MD -MP -MF .deps/loader.TPlo -o loader.o >/dev/null 2>&1
mv -f .libs/loader.lo loader.lo
source='class.c' object='class.lo' libtool=yes \
depfile='.deps/class.Plo' tmpdepfile='.deps/class.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o class.lo `test -f 'class.c' || echo './'`class.c
rm -f .libs/class.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c class.c -MT class.lo -MD -MP -MF .deps/class.TPlo  -fPIC -DPIC -o .libs/class.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c class.c -MT class.lo -MD -MP -MF .deps/class.TPlo -o class.o >/dev/null 2>&1
mv -f .libs/class.lo class.lo
source='mempool.c' object='mempool.lo' libtool=yes \
depfile='.deps/mempool.Plo' tmpdepfile='.deps/mempool.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o mempool.lo `test -f 'mempool.c' || echo './'`mempool.c
rm -f .libs/mempool.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mempool.c -MT mempool.lo -MD -MP -MF .deps/mempool.TPlo  -fPIC -DPIC -o .libs/mempool.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mempool.c -MT mempool.lo -MD -MP -MF .deps/mempool.TPlo -o mempool.o >/dev/null 2>&1
mv -f .libs/mempool.lo mempool.lo
source='debug-helpers.c' object='debug-helpers.lo' libtool=yes \
depfile='.deps/debug-helpers.Plo' tmpdepfile='.deps/debug-helpers.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o debug-helpers.lo `test -f 'debug-helpers.c' || echo './'`debug-helpers.c
rm -f .libs/debug-helpers.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c debug-helpers.c -MT debug-helpers.lo -MD -MP -MF .deps/debug-helpers.TPlo  -fPIC -DPIC -o .libs/debug-helpers.lo
debug-helpers.c: In function `mono_method_full_name':
debug-helpers.c:484: warning: assignment discards qualifiers from pointer target type
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c debug-helpers.c -MT debug-helpers.lo -MD -MP -MF .deps/debug-helpers.TPlo -o debug-helpers.o >/dev/null 2>&1
mv -f .libs/debug-helpers.lo debug-helpers.lo
/bin/sh ../../libtool --mode=link cc  -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings  -lpthread -o libmetadata.la   assembly.lo domain.lo opcodes.lo image.lo metadata.lo verify.lo mono-endian.lo mono-config.lo rawbuffer.lo loader.lo class.lo mempool.lo  debug-helpers.lo  -lpthread -lm
rm -fr .libs/libmetadata.la .libs/libmetadata.* .libs/libmetadata.*
ar cru .libs/libmetadata.al assembly.lo domain.lo opcodes.lo image.lo metadata.lo verify.lo mono-endian.lo mono-config.lo rawbuffer.lo loader.lo class.lo mempool.lo debug-helpers.lo
ranlib .libs/libmetadata.al
creating libmetadata.la
(cd .libs && rm -f libmetadata.la && ln -s ../libmetadata.la libmetadata.la)
gmake  all-am
gmake[4]: Entering directory `/usr/ports/local/mono/work/mono-0.96/mono/metadata'
source='reflection.c' object='reflection.lo' libtool=yes \
depfile='.deps/reflection.Plo' tmpdepfile='.deps/reflection.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o reflection.lo `test -f 'reflection.c' || echo './'`reflection.c
rm -f .libs/reflection.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c reflection.c -MT reflection.lo -MD -MP -MF .deps/reflection.TPlo  -fPIC -DPIC -o .libs/reflection.lo
reflection.c: In function `mono_image_get_varargs_method_token':
reflection.c:2250: warning: unused variable `parent'
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c reflection.c -MT reflection.lo -MD -MP -MF .deps/reflection.TPlo -o reflection.o >/dev/null 2>&1
mv -f .libs/reflection.lo reflection.lo
source='object.c' object='object.lo' libtool=yes \
depfile='.deps/object.Plo' tmpdepfile='.deps/object.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o object.lo `test -f 'object.c' || echo './'`object.c
rm -f .libs/object.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c object.c -MT object.lo -MD -MP -MF .deps/object.TPlo  -fPIC -DPIC -o .libs/object.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c object.c -MT object.lo -MD -MP -MF .deps/object.TPlo -o object.o >/dev/null 2>&1
mv -f .libs/object.lo object.lo
source='icall.c' object='icall.lo' libtool=yes \
depfile='.deps/icall.Plo' tmpdepfile='.deps/icall.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o icall.lo `test -f 'icall.c' || echo './'`icall.c
rm -f .libs/icall.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c icall.c -MT icall.lo -MD -MP -MF .deps/icall.TPlo  -fPIC -DPIC -o .libs/icall.lo
icall.c: In function `type_from_name':
icall.c:953: warning: passing arg 1 of `mono_reflection_parse_type' discards qualifiers from pointer target type
icall.c: At top level:
icall.c:984: warning: no previous prototype for `mono_type_get'
icall.c: In function `ves_icall_System_Text_Encoding_InternalCodePage':
icall.c:4571: warning: assignment discards qualifiers from pointer target type
icall.c:4576: warning: assignment discards qualifiers from pointer target type
icall.c:4583: warning: assignment discards qualifiers from pointer target type
icall.c: In function `ves_icall_System_Char_GetDataTablePointers':
icall.c:4977: warning: assignment discards qualifiers from pointer target type
icall.c:4978: warning: assignment discards qualifiers from pointer target type
icall.c:4979: warning: assignment discards qualifiers from pointer target type
icall.c:4980: warning: assignment discards qualifiers from pointer target type
icall.c:4981: warning: assignment discards qualifiers from pointer target type
icall.c:4982: warning: assignment discards qualifiers from pointer target type
icall.c:4983: warning: assignment discards qualifiers from pointer target type
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c icall.c -MT icall.lo -MD -MP -MF .deps/icall.TPlo -o icall.o >/dev/null 2>&1
mv -f .libs/icall.lo icall.lo
source='decimal.c' object='decimal.lo' libtool=yes \
depfile='.deps/decimal.Plo' tmpdepfile='.deps/decimal.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o decimal.lo `test -f 'decimal.c' || echo './'`decimal.c
rm -f .libs/decimal.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c decimal.c -MT decimal.lo -MD -MP -MF .deps/decimal.TPlo  -fPIC -DPIC -o .libs/decimal.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c decimal.c -MT decimal.lo -MD -MP -MF .deps/decimal.TPlo -o decimal.o >/dev/null 2>&1
mv -f .libs/decimal.lo decimal.lo
source='gc.c' object='gc.lo' libtool=yes \
depfile='.deps/gc.Plo' tmpdepfile='.deps/gc.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o gc.lo `test -f 'gc.c' || echo './'`gc.c
rm -f .libs/gc.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c gc.c -MT gc.lo -MD -MP -MF .deps/gc.TPlo  -fPIC -DPIC -o .libs/gc.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c gc.c -MT gc.lo -MD -MP -MF .deps/gc.TPlo -o gc.o >/dev/null 2>&1
mv -f .libs/gc.lo gc.lo
source='marshal.c' object='marshal.lo' libtool=yes \
depfile='.deps/marshal.Plo' tmpdepfile='.deps/marshal.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o marshal.lo `test -f 'marshal.c' || echo './'`marshal.c
rm -f .libs/marshal.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c marshal.c -MT marshal.lo -MD -MP -MF .deps/marshal.TPlo  -fPIC -DPIC -o .libs/marshal.lo
marshal.c: In function `mono_marshal_get_native_wrapper':
marshal.c:3106: warning: `klass' might be used uninitialized in this function
marshal.c:3108: warning: `pos' might be used uninitialized in this function
marshal.c:3590: warning: `local_type' might be used uninitialized in this function
marshal.c: In function `mono_marshal_get_synchronized_wrapper':
marshal.c:4660: warning: `ret_local' might be used uninitialized in this function
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c marshal.c -MT marshal.lo -MD -MP -MF .deps/marshal.TPlo -o marshal.o >/dev/null 2>&1
mv -f .libs/marshal.lo marshal.lo
source='monitor.c' object='monitor.lo' libtool=yes \
depfile='.deps/monitor.Plo' tmpdepfile='.deps/monitor.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o monitor.lo `test -f 'monitor.c' || echo './'`monitor.c
rm -f .libs/monitor.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c monitor.c -MT monitor.lo -MD -MP -MF .deps/monitor.TPlo  -fPIC -DPIC -o .libs/monitor.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c monitor.c -MT monitor.lo -MD -MP -MF .deps/monitor.TPlo -o monitor.o >/dev/null 2>&1
mv -f .libs/monitor.lo monitor.lo
source='threads.c' object='threads.lo' libtool=yes \
depfile='.deps/threads.Plo' tmpdepfile='.deps/threads.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o threads.lo `test -f 'threads.c' || echo './'`threads.c
rm -f .libs/threads.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c threads.c -MT threads.lo -MD -MP -MF .deps/threads.TPlo  -fPIC -DPIC -o .libs/threads.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c threads.c -MT threads.lo -MD -MP -MF .deps/threads.TPlo -o threads.o >/dev/null 2>&1
mv -f .libs/threads.lo threads.lo
source='threadpool.c' object='threadpool.lo' libtool=yes \
depfile='.deps/threadpool.Plo' tmpdepfile='.deps/threadpool.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o threadpool.lo `test -f 'threadpool.c' || echo './'`threadpool.c
rm -f .libs/threadpool.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c threadpool.c -MT threadpool.lo -MD -MP -MF .deps/threadpool.TPlo  -fPIC -DPIC -o .libs/threadpool.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c threadpool.c -MT threadpool.lo -MD -MP -MF .deps/threadpool.TPlo -o threadpool.o >/dev/null 2>&1
mv -f .libs/threadpool.lo threadpool.lo
source='file-io.c' object='file-io.lo' libtool=yes \
depfile='.deps/file-io.Plo' tmpdepfile='.deps/file-io.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o file-io.lo `test -f 'file-io.c' || echo './'`file-io.c
rm -f .libs/file-io.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c file-io.c -MT file-io.lo -MD -MP -MF .deps/file-io.TPlo  -fPIC -DPIC -o .libs/file-io.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c file-io.c -MT file-io.lo -MD -MP -MF .deps/file-io.TPlo -o file-io.o >/dev/null 2>&1
mv -f .libs/file-io.lo file-io.lo
source='socket-io.c' object='socket-io.lo' libtool=yes \
depfile='.deps/socket-io.Plo' tmpdepfile='.deps/socket-io.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o socket-io.lo `test -f 'socket-io.c' || echo './'`socket-io.c
rm -f .libs/socket-io.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c socket-io.c -MT socket-io.lo -MD -MP -MF .deps/socket-io.TPlo  -fPIC -DPIC -o .libs/socket-io.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c socket-io.c -MT socket-io.lo -MD -MP -MF .deps/socket-io.TPlo -o socket-io.o >/dev/null 2>&1
mv -f .libs/socket-io.lo socket-io.lo
source='exception.c' object='exception.lo' libtool=yes \
depfile='.deps/exception.Plo' tmpdepfile='.deps/exception.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o exception.lo `test -f 'exception.c' || echo './'`exception.c
rm -f .libs/exception.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c exception.c -MT exception.lo -MD -MP -MF .deps/exception.TPlo  -fPIC -DPIC -o .libs/exception.lo
exception.c: In function `mono_get_exception_type_initialization':
exception.c:326: warning: `method' might be used uninitialized in this function
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c exception.c -MT exception.lo -MD -MP -MF .deps/exception.TPlo -o exception.o >/dev/null 2>&1
mv -f .libs/exception.lo exception.lo
source='unicode.c' object='unicode.lo' libtool=yes \
depfile='.deps/unicode.Plo' tmpdepfile='.deps/unicode.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o unicode.lo `test -f 'unicode.c' || echo './'`unicode.c
rm -f .libs/unicode.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c unicode.c -MT unicode.lo -MD -MP -MF .deps/unicode.TPlo  -fPIC -DPIC -o .libs/unicode.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c unicode.c -MT unicode.lo -MD -MP -MF .deps/unicode.TPlo -o unicode.o >/dev/null 2>&1
mv -f .libs/unicode.lo unicode.lo
source='appdomain.c' object='appdomain.lo' libtool=yes \
depfile='.deps/appdomain.Plo' tmpdepfile='.deps/appdomain.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o appdomain.lo `test -f 'appdomain.c' || echo './'`appdomain.c
rm -f .libs/appdomain.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c appdomain.c -MT appdomain.lo -MD -MP -MF .deps/appdomain.TPlo  -fPIC -DPIC -o .libs/appdomain.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c appdomain.c -MT appdomain.lo -MD -MP -MF .deps/appdomain.TPlo -o appdomain.o >/dev/null 2>&1
mv -f .libs/appdomain.lo appdomain.lo
source='debug-mono-symfile.c' object='debug-mono-symfile.lo' libtool=yes \
depfile='.deps/debug-mono-symfile.Plo' tmpdepfile='.deps/debug-mono-symfile.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o debug-mono-symfile.lo `test -f 'debug-mono-symfile.c' || echo './'`debug-mono-symfile.c
rm -f .libs/debug-mono-symfile.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c debug-mono-symfile.c -MT debug-mono-symfile.lo -MD -MP -MF .deps/debug-mono-symfile.TPlo  -fPIC -DPIC -o .libs/debug-mono-symfile.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c debug-mono-symfile.c -MT debug-mono-symfile.lo -MD -MP -MF .deps/debug-mono-symfile.TPlo -o debug-mono-symfile.o >/dev/null 2>&1
mv -f .libs/debug-mono-symfile.lo debug-mono-symfile.lo
source='mono-debug.c' object='mono-debug.lo' libtool=yes \
depfile='.deps/mono-debug.Plo' tmpdepfile='.deps/mono-debug.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o mono-debug.lo `test -f 'mono-debug.c' || echo './'`mono-debug.c
rm -f .libs/mono-debug.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-debug.c -MT mono-debug.lo -MD -MP -MF .deps/mono-debug.TPlo  -fPIC -DPIC -o .libs/mono-debug.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-debug.c -MT mono-debug.lo -MD -MP -MF .deps/mono-debug.TPlo -o mono-debug.o >/dev/null 2>&1
mv -f .libs/mono-debug.lo mono-debug.lo
source='mono-debug-debugger.c' object='mono-debug-debugger.lo' libtool=yes \
depfile='.deps/mono-debug-debugger.Plo' tmpdepfile='.deps/mono-debug-debugger.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o mono-debug-debugger.lo `test -f 'mono-debug-debugger.c' || echo './'`mono-debug-debugger.c
rm -f .libs/mono-debug-debugger.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-debug-debugger.c -MT mono-debug-debugger.lo -MD -MP -MF .deps/mono-debug-debugger.TPlo  -fPIC -DPIC -o .libs/mono-debug-debugger.lo
mono-debug-debugger.c:53: warning: initialization from incompatible pointer type
mono-debug-debugger.c:54: warning: initialization from incompatible pointer type
mono-debug-debugger.c:54: warning: initialization from incompatible pointer type
mono-debug-debugger.c: In function `mono_debugger_add_method':
mono-debug-debugger.c:379: warning: `line_size' might be used uninitialized in this function
mono-debug-debugger.c:379: warning: `line_offset' might be used uninitialized in this function
mono-debug-debugger.c: In function `mono_debugger_lookup_assembly':
mono-debug-debugger.c:1236: warning: implicit declaration of function `mono_assembly_open'
mono-debug-debugger.c:1236: warning: assignment makes pointer from integer without a cast
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mono-debug-debugger.c -MT mono-debug-debugger.lo -MD -MP -MF .deps/mono-debug-debugger.TPlo -o mono-debug-debugger.o >/dev/null 2>&1
mv -f .libs/mono-debug-debugger.lo mono-debug-debugger.lo
source='profiler.c' object='profiler.lo' libtool=yes \
depfile='.deps/profiler.Plo' tmpdepfile='.deps/profiler.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o profiler.lo `test -f 'profiler.c' || echo './'`profiler.c
rm -f .libs/profiler.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c profiler.c -MT profiler.lo -MD -MP -MF .deps/profiler.TPlo  -fPIC -DPIC -o .libs/profiler.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c profiler.c -MT profiler.lo -MD -MP -MF .deps/profiler.TPlo -o profiler.o >/dev/null 2>&1
mv -f .libs/profiler.lo profiler.lo
source='rand.c' object='rand.lo' libtool=yes \
depfile='.deps/rand.Plo' tmpdepfile='.deps/rand.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o rand.lo `test -f 'rand.c' || echo './'`rand.c
rm -f .libs/rand.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c rand.c -MT rand.lo -MD -MP -MF .deps/rand.TPlo  -fPIC -DPIC -o .libs/rand.lo
rand.c: In function `get_entropy_from_server':
rand.c:42: warning: implicit declaration of function `strncpy'
rand.c: In function `ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_RngInitialize':
rand.c:183: warning: return makes pointer from integer without a cast
rand.c:197: warning: return makes pointer from integer without a cast
rand.c: In function `ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_RngGetBytes':
rand.c:217: warning: return makes pointer from integer without a cast
rand.c:230: warning: implicit declaration of function `strerror'
rand.c:230: warning: format argument is not a pointer (arg 4)
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c rand.c -MT rand.lo -MD -MP -MF .deps/rand.TPlo -o rand.o >/dev/null 2>&1
mv -f .libs/rand.lo rand.lo
source='security.c' object='security.lo' libtool=yes \
depfile='.deps/security.Plo' tmpdepfile='.deps/security.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o security.lo `test -f 'security.c' || echo './'`security.c
rm -f .libs/security.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c security.c -MT security.lo -MD -MP -MF .deps/security.TPlo  -fPIC -DPIC -o .libs/security.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c security.c -MT security.lo -MD -MP -MF .deps/security.TPlo -o security.o >/dev/null 2>&1
mv -f .libs/security.lo security.lo
source='string-icalls.c' object='string-icalls.lo' libtool=yes \
depfile='.deps/string-icalls.Plo' tmpdepfile='.deps/string-icalls.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o string-icalls.lo `test -f 'string-icalls.c' || echo './'`string-icalls.c
rm -f .libs/string-icalls.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c string-icalls.c -MT string-icalls.lo -MD -MP -MF .deps/string-icalls.TPlo  -fPIC -DPIC -o .libs/string-icalls.lo
string-icalls.c: In function `ves_icall_System_String_InternalStrcpy_Chars':
string-icalls.c:628: warning: assignment from incompatible pointer type
string-icalls.c: In function `ves_icall_System_String_InternalStrcpy_CharsN':
string-icalls.c:642: warning: assignment from incompatible pointer type
string-icalls.c: In function `string_icall_cmp_char':
string-icalls.c:705: warning: `result' might be used uninitialized in this function
string-icalls.c: At top level:
string-icalls.c:704: warning: `string_icall_cmp_char' defined but not used
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c string-icalls.c -MT string-icalls.lo -MD -MP -MF .deps/string-icalls.TPlo -o string-icalls.o >/dev/null 2>&1
mv -f .libs/string-icalls.lo string-icalls.lo
source='sysmath.c' object='sysmath.lo' libtool=yes \
depfile='.deps/sysmath.Plo' tmpdepfile='.deps/sysmath.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o sysmath.lo `test -f 'sysmath.c' || echo './'`sysmath.c
rm -f .libs/sysmath.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c sysmath.c -MT sysmath.lo -MD -MP -MF .deps/sysmath.TPlo  -fPIC -DPIC -o .libs/sysmath.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c sysmath.c -MT sysmath.lo -MD -MP -MF .deps/sysmath.TPlo -o sysmath.o >/dev/null 2>&1
mv -f .libs/sysmath.lo sysmath.lo
source='process.c' object='process.lo' libtool=yes \
depfile='.deps/process.Plo' tmpdepfile='.deps/process.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o process.lo `test -f 'process.c' || echo './'`process.c
rm -f .libs/process.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c process.c -MT process.lo -MD -MP -MF .deps/process.TPlo  -fPIC -DPIC -o .libs/process.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c process.c -MT process.lo -MD -MP -MF .deps/process.TPlo -o process.o >/dev/null 2>&1
mv -f .libs/process.lo process.lo
source='environment.c' object='environment.lo' libtool=yes \
depfile='.deps/environment.Plo' tmpdepfile='.deps/environment.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o environment.lo `test -f 'environment.c' || echo './'`environment.c
rm -f .libs/environment.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c environment.c -MT environment.lo -MD -MP -MF .deps/environment.TPlo  -fPIC -DPIC -o .libs/environment.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c environment.c -MT environment.lo -MD -MP -MF .deps/environment.TPlo -o environment.o >/dev/null 2>&1
mv -f .libs/environment.lo environment.lo
source='locales.c' object='locales.lo' libtool=yes \
depfile='.deps/locales.Plo' tmpdepfile='.deps/locales.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o locales.lo `test -f 'locales.c' || echo './'`locales.c
rm -f .libs/locales.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c locales.c -MT locales.lo -MD -MP -MF .deps/locales.TPlo  -fPIC -DPIC -o .libs/locales.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c locales.c -MT locales.lo -MD -MP -MF .deps/locales.TPlo -o locales.o >/dev/null 2>&1
mv -f .libs/locales.lo locales.lo
source='filewatcher.c' object='filewatcher.lo' libtool=yes \
depfile='.deps/filewatcher.Plo' tmpdepfile='.deps/filewatcher.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o filewatcher.lo `test -f 'filewatcher.c' || echo './'`filewatcher.c
rm -f .libs/filewatcher.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c filewatcher.c -MT filewatcher.lo -MD -MP -MF .deps/filewatcher.TPlo  -fPIC -DPIC -o .libs/filewatcher.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\" -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c filewatcher.c -MT filewatcher.lo -MD -MP -MF .deps/filewatcher.TPlo -o filewatcher.o >/dev/null 2>&1
mv -f .libs/filewatcher.lo filewatcher.lo
/bin/sh ../../libtool --mode=link cc  -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings  -lpthread -o libmonoruntime.la   reflection.lo object.lo icall.lo decimal.lo gc.lo marshal.lo monitor.lo threads.lo threadpool.lo file-io.lo socket-io.lo exception.lo unicode.lo appdomain.lo debug-mono-symfile.lo mono-debug.lo mono-debug-debugger.lo profiler.lo rand.lo security.lo string-icalls.lo sysmath.lo process.lo environment.lo locales.lo filewatcher.lo  -lpthread -lm
rm -fr .libs/libmonoruntime.la .libs/libmonoruntime.* .libs/libmonoruntime.*
ar cru .libs/libmonoruntime.al reflection.lo object.lo icall.lo decimal.lo gc.lo marshal.lo monitor.lo threads.lo threadpool.lo file-io.lo socket-io.lo exception.lo unicode.lo appdomain.lo debug-mono-symfile.lo mono-debug.lo mono-debug-debugger.lo profiler.lo rand.lo security.lo string-icalls.lo sysmath.lo process.lo environment.lo locales.lo filewatcher.lo
ranlib .libs/libmonoruntime.al
creating libmonoruntime.la
(cd .libs && rm -f libmonoruntime.la && ln -s ../libmonoruntime.la libmonoruntime.la)
source='pedump.c' object='pedump.o' libtool=no \
depfile='.deps/pedump.Po' tmpdepfile='.deps/pedump.TPo' \
depmode=gcc3 /bin/sh ../../depcomp \
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c `test -f 'pedump.c' || echo './'`pedump.c
/bin/sh ../../libtool --mode=link cc  -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings  -lpthread -o pedump  pedump.o libmetadata.la ../io-layer/libwapi.la ../utils/libmonoutils.la ../../libgc/libmonogc.la -L/usr/local/lib -lgthread-2.0 -lpthread -lglib-2.0 -liconv   -Wl,--export-dynamic -L/usr/local/lib -lgmodule-2.0 -lglib-2.0 -liconv   -lm -lpthread -lm
cc -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -o pedump pedump.o -Wl,--export-dynamic  ./.libs/libmetadata.al ../io-layer/.libs/libwapi.al ../utils/.libs/libmonoutils.al ../../libgc/.libs/libmonogc.al -L/usr/local/lib -lgthread-2.0 -lgmodule-2.0 -lglib-2.0 -liconv -lpthread -lm
source='monosn.c' object='monosn.o' libtool=no \
depfile='.deps/monosn.Po' tmpdepfile='.deps/monosn.TPo' \
depmode=gcc3 /bin/sh ../../depcomp \
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../mono -I../../libgc/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DMONO_ASSEMBLIES=\"/usr/local/lib\" -DMONO_CFG_DIR=\"/usr/local/etc\"  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c `test -f 'monosn.c' || echo './'`monosn.c
monosn.c: In function `show_token':
monosn.c:73: warning: implicit declaration of function `mono_raw_buffer_init'
/bin/sh ../../libtool --mode=link cc  -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings  -lpthread -o monosn  monosn.o libmetadata.la ../io-layer/libwapi.la ../utils/libmonoutils.la ../../libgc/libmonogc.la -L/usr/local/lib -lgthread-2.0 -lpthread -lglib-2.0 -liconv   -Wl,--export-dynamic -L/usr/local/lib -lgmodule-2.0 -lglib-2.0 -liconv   -lm -lpthread -lm
cc -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -o monosn monosn.o -Wl,--export-dynamic  ./.libs/libmetadata.al ../io-layer/.libs/libwapi.al ../utils/.libs/libmonoutils.al ../../libgc/.libs/libmonogc.al -L/usr/local/lib -lgthread-2.0 -lgmodule-2.0 -lglib-2.0 -liconv -lpthread -lm
gmake[4]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/mono/metadata'
gmake[3]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/mono/metadata'
Making all in cil
gmake[3]: Entering directory `/usr/ports/local/mono/work/mono-0.96/mono/cil'
gmake[3]: Nothing to be done for `all'.
gmake[3]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/mono/cil'
Making all in dis
gmake[3]: Entering directory `/usr/ports/local/mono/work/mono-0.96/mono/dis'
source='get.c' object='get.o' libtool=no \
depfile='.deps/get.Po' tmpdepfile='.deps/get.TPo' \
depmode=gcc3 /bin/sh ../../depcomp \
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../..  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c `test -f 'get.c' || echo './'`get.c
get.c: In function `get_method':
get.c:1333: warning: `sig' might be used uninitialized in this function
get.c: In function `get_methodspec':
get.c:1464: warning: `sig' might be used uninitialized in this function
source='dis-cil.c' object='dis-cil.o' libtool=no \
depfile='.deps/dis-cil.Po' tmpdepfile='.deps/dis-cil.TPo' \
depmode=gcc3 /bin/sh ../../depcomp \
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../..  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c `test -f 'dis-cil.c' || echo './'`dis-cil.c
source='util.c' object='util.o' libtool=no \
depfile='.deps/util.Po' tmpdepfile='.deps/util.TPo' \
depmode=gcc3 /bin/sh ../../depcomp \
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../..  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c `test -f 'util.c' || echo './'`util.c
rm -f libmonodis.a
ar cru libmonodis.a get.o dis-cil.o util.o 
ranlib libmonodis.a
source='dump.c' object='dump.o' libtool=no \
depfile='.deps/dump.Po' tmpdepfile='.deps/dump.TPo' \
depmode=gcc3 /bin/sh ../../depcomp \
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../..  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c `test -f 'dump.c' || echo './'`dump.c
dump.c: In function `dump_table_memberref':
dump.c:225: warning: `ks' might be used uninitialized in this function
source='main.c' object='main.o' libtool=no \
depfile='.deps/main.Po' tmpdepfile='.deps/main.TPo' \
depmode=gcc3 /bin/sh ../../depcomp \
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../..  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c `test -f 'main.c' || echo './'`main.c
/bin/sh ../../libtool --mode=link cc  -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings  -lpthread -o monodis  dump.o main.o libmonodis.a ../metadata/libmetadata.la ../io-layer/libwapi.la ../utils/libmonoutils.la ../../libgc/libmonogc.la -Wl,--export-dynamic -L/usr/local/lib -lgmodule-2.0 -lglib-2.0 -liconv   -L/usr/local/lib -lgthread-2.0 -lpthread -lglib-2.0 -liconv    -lpthread -lm
mkdir .libs
cc -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -o monodis dump.o main.o -Wl,--export-dynamic  libmonodis.a ../metadata/.libs/libmetadata.al ../io-layer/.libs/libwapi.al ../utils/.libs/libmonoutils.al ../../libgc/.libs/libmonogc.al -L/usr/local/lib -lgmodule-2.0 -lgthread-2.0 -lglib-2.0 -liconv -lpthread -lm
gmake[3]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/mono/dis'
Making all in arch
gmake[3]: Entering directory `/usr/ports/local/mono/work/mono-0.96/mono/arch'
Making all in x86
gmake[4]: Entering directory `/usr/ports/local/mono/work/mono-0.96/mono/arch/x86'
source='tramp.c' object='tramp.lo' libtool=yes \
depfile='.deps/tramp.Plo' tmpdepfile='.deps/tramp.TPlo' \
depmode=gcc3 /bin/sh ../../../depcomp \
/bin/sh ../../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../../..  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o tramp.lo `test -f 'tramp.c' || echo './'`tramp.c
mkdir .libs
cc -DHAVE_CONFIG_H -I. -I. -I../../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c tramp.c -MT tramp.lo -MD -MP -MF .deps/tramp.TPlo  -fPIC -DPIC -o .libs/tramp.lo
cc -DHAVE_CONFIG_H -I. -I. -I../../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c tramp.c -MT tramp.lo -MD -MP -MF .deps/tramp.TPlo -o tramp.o >/dev/null 2>&1
mv -f .libs/tramp.lo tramp.lo
/bin/sh ../../../libtool --mode=link cc  -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings  -lpthread -o libmonoarch-x86.la   tramp.lo  -lpthread -lm
rm -fr .libs/libmonoarch-x86.la .libs/libmonoarch-x86.* .libs/libmonoarch-x86.*
ar cru .libs/libmonoarch-x86.al tramp.lo
ranlib .libs/libmonoarch-x86.al
creating libmonoarch-x86.la
(cd .libs && rm -f libmonoarch-x86.la && ln -s ../libmonoarch-x86.la libmonoarch-x86.la)
gmake[4]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/mono/arch/x86'
gmake[4]: Entering directory `/usr/ports/local/mono/work/mono-0.96/mono/arch'
source='unknown.c' object='unknown.lo' libtool=yes \
depfile='.deps/unknown.Plo' tmpdepfile='.deps/unknown.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -I../..  -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o unknown.lo `test -f 'unknown.c' || echo './'`unknown.c
mkdir .libs
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c unknown.c -MT unknown.lo -MD -MP -MF .deps/unknown.TPlo  -fPIC -DPIC -o .libs/unknown.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../.. -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c unknown.c -MT unknown.lo -MD -MP -MF .deps/unknown.TPlo -o unknown.o >/dev/null 2>&1
mv -f .libs/unknown.lo unknown.lo
/bin/sh ../../libtool --mode=link cc  -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings  -lpthread -o libmonoarch.la   unknown.lo x86/libmonoarch-x86.la -lpthread -lm
rm -fr .libs/libmonoarch.la .libs/libmonoarch.* .libs/libmonoarch.*
rm -fr .libs/libmonoarch.lax
mkdir .libs/libmonoarch.lax
rm -fr .libs/libmonoarch.lax/libmonoarch-x86.al
mkdir .libs/libmonoarch.lax/libmonoarch-x86.al
(cd .libs/libmonoarch.lax/libmonoarch-x86.al && ar x /usr/ports/local/mono/work/mono-0.96/mono/arch/x86/.libs/libmonoarch-x86.al)
ar cru .libs/libmonoarch.al unknown.lo .libs/libmonoarch.lax/libmonoarch-x86.al/tramp.lo 
ranlib .libs/libmonoarch.al
rm -fr .libs/libmonoarch.lax
creating libmonoarch.la
(cd .libs && rm -f libmonoarch.la && ln -s ../libmonoarch.la libmonoarch.la)
gmake[4]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/mono/arch'
gmake[3]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/mono/arch'
Making all in monograph
gmake[3]: Entering directory `/usr/ports/local/mono/work/mono-0.96/mono/monograph'
source='monograph.c' object='monograph.o' libtool=no \
depfile='.deps/monograph.Po' tmpdepfile='.deps/monograph.TPo' \
depmode=gcc3 /bin/sh ../../depcomp \
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c `test -f 'monograph.c' || echo './'`monograph.c
/bin/sh ../../libtool --mode=link cc  -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings  -lpthread -o monograph  monograph.o ../metadata/libmetadata.la ../io-layer/libwapi.la ../utils/libmonoutils.la ../../libgc/libmonogc.la -L/usr/local/lib -lgthread-2.0 -lpthread -lglib-2.0 -liconv   -Wl,--export-dynamic -L/usr/local/lib -lgmodule-2.0 -lglib-2.0 -liconv   -lm -lpthread -lm
mkdir .libs
cc -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -o monograph monograph.o -Wl,--export-dynamic  ../metadata/.libs/libmetadata.al ../io-layer/.libs/libwapi.al ../utils/.libs/libmonoutils.al ../../libgc/.libs/libmonogc.al -L/usr/local/lib -lgthread-2.0 -lgmodule-2.0 -lglib-2.0 -liconv -lpthread -lm
gmake[3]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/mono/monograph'
Making all in interpreter
gmake[3]: Entering directory `/usr/ports/local/mono/work/mono-0.96/mono/interpreter'
source='interp.c' object='interp.lo' libtool=yes \
depfile='.deps/interp.Plo' tmpdepfile='.deps/interp.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o interp.lo `test -f 'interp.c' || echo './'`interp.c
mkdir .libs
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c interp.c -MT interp.lo -MD -MP -MF .deps/interp.TPlo  -fPIC -DPIC -o .libs/interp.lo
interp.c: In function `ves_exec_method_with_context':
interp.c:3814: warning: label `mint_default' defined but not used
interp.c: In function `thread_abort_handler':
interp.c:4164: warning: unused variable `thread'
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c interp.c -MT interp.lo -MD -MP -MF .deps/interp.TPlo -o interp.o >/dev/null 2>&1
mv -f .libs/interp.lo interp.lo
source='mintops.c' object='mintops.lo' libtool=yes \
depfile='.deps/mintops.Plo' tmpdepfile='.deps/mintops.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o mintops.lo `test -f 'mintops.c' || echo './'`mintops.c
rm -f .libs/mintops.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mintops.c -MT mintops.lo -MD -MP -MF .deps/mintops.TPlo  -fPIC -DPIC -o .libs/mintops.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mintops.c -MT mintops.lo -MD -MP -MF .deps/mintops.TPlo -o mintops.o >/dev/null 2>&1
mv -f .libs/mintops.lo mintops.lo
source='transform.c' object='transform.lo' libtool=yes \
depfile='.deps/transform.Plo' tmpdepfile='.deps/transform.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o transform.lo `test -f 'transform.c' || echo './'`transform.c
rm -f .libs/transform.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c transform.c -MT transform.lo -MD -MP -MF .deps/transform.TPlo  -fPIC -DPIC -o .libs/transform.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c transform.c -MT transform.lo -MD -MP -MF .deps/transform.TPlo -o transform.o >/dev/null 2>&1
mv -f .libs/transform.lo transform.lo
/bin/sh ../../libtool --mode=link cc  -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings  -lpthread -o libmint.la -rpath /usr/local/lib  interp.lo mintops.lo transform.lo ../arch/libmonoarch.la ../metadata/libmonoruntime.la ../metadata/libmetadata.la ../io-layer/libwapi.la ../utils/libmonoutils.la ../os/libmonoos.la ../../libgc/libmonogc.la -L/usr/local/lib -lgthread-2.0 -lpthread -lglib-2.0 -liconv   -Wl,--export-dynamic -L/usr/local/lib -lgmodule-2.0 -lglib-2.0 -liconv    -lm -lpthread -lm
rm -fr .libs/libmint.la .libs/libmint.* .libs/libmint.*
cc -shared  interp.lo mintops.lo transform.lo -Wl,--whole-archive ../arch/.libs/libmonoarch.al ../metadata/.libs/libmonoruntime.al ../metadata/.libs/libmetadata.al ../io-layer/.libs/libwapi.al ../utils/.libs/libmonoutils.al ../os/.libs/libmonoos.al ../../libgc/.libs/libmonogc.al -Wl,--no-whole-archive  -L/usr/local/lib -lgthread-2.0 -lgmodule-2.0 -lglib-2.0 -liconv -lpthread -lm  -Wl,--export-dynamic -Wl,-soname -Wl,libmint.so.0 -o .libs/libmint.so.0
(cd .libs && rm -f libmint.so && ln -s libmint.so.0 libmint.so)
(cd .libs && rm -f libmint.so && ln -s libmint.so.0 libmint.so)
rm -fr .libs/libmint.lax
mkdir .libs/libmint.lax
rm -fr .libs/libmint.lax/libmonoarch.al
mkdir .libs/libmint.lax/libmonoarch.al
(cd .libs/libmint.lax/libmonoarch.al && ar x /usr/ports/local/mono/work/mono-0.96/mono/interpreter/../arch/.libs/libmonoarch.al)
rm -fr .libs/libmint.lax/libmonoruntime.al
mkdir .libs/libmint.lax/libmonoruntime.al
(cd .libs/libmint.lax/libmonoruntime.al && ar x /usr/ports/local/mono/work/mono-0.96/mono/interpreter/../metadata/.libs/libmonoruntime.al)
rm -fr .libs/libmint.lax/libmetadata.al
mkdir .libs/libmint.lax/libmetadata.al
(cd .libs/libmint.lax/libmetadata.al && ar x /usr/ports/local/mono/work/mono-0.96/mono/interpreter/../metadata/.libs/libmetadata.al)
rm -fr .libs/libmint.lax/libwapi.al
mkdir .libs/libmint.lax/libwapi.al
(cd .libs/libmint.lax/libwapi.al && ar x /usr/ports/local/mono/work/mono-0.96/mono/interpreter/../io-layer/.libs/libwapi.al)
rm -fr .libs/libmint.lax/libmonoutils.al
mkdir .libs/libmint.lax/libmonoutils.al
(cd .libs/libmint.lax/libmonoutils.al && ar x /usr/ports/local/mono/work/mono-0.96/mono/interpreter/../utils/.libs/libmonoutils.al)
rm -fr .libs/libmint.lax/libmonoos.al
mkdir .libs/libmint.lax/libmonoos.al
(cd .libs/libmint.lax/libmonoos.al && ar x /usr/ports/local/mono/work/mono-0.96/mono/interpreter/../os/.libs/libmonoos.al)
rm -fr .libs/libmint.lax/libmonogc.al
mkdir .libs/libmint.lax/libmonogc.al
(cd .libs/libmint.lax/libmonogc.al && ar x /usr/ports/local/mono/work/mono-0.96/mono/interpreter/../../libgc/.libs/libmonogc.al)
ar cru .libs/libmint.a  interp.o mintops.o transform.o  .libs/libmint.lax/libmonoarch.al/unknown.lo .libs/libmint.lax/libmonoarch.al/tramp.lo  .libs/libmint.lax/libmonoruntime.al/reflection.lo .libs/libmint.lax/libmonoruntime.al/object.lo .libs/libmint.lax/libmonoruntime.al/icall.lo .libs/libmint.lax/libmonoruntime.al/decimal.lo .libs/libmint.lax/libmonoruntime.al/gc.lo .libs/libmint.lax/libmonoruntime.al/marshal.lo .libs/libmint.lax/libmonoruntime.al/monitor.lo .libs/libmint.lax/libmonoruntime.al/threads.lo .libs/libmint.lax/libmonoruntime.al/threadpool.lo .libs/libmint.lax/libmonoruntime.al/file-io.lo .libs/libmint.lax/libmonoruntime.al/socket-io.lo .libs/libmint.lax/libmonoruntime.al/exception.lo .libs/libmint.lax/libmonoruntime.al/unicode.lo .libs/libmint.lax/libmonoruntime.al/appdomain.lo .libs/libmint.lax/libmonoruntime.al/debug-mono-symfile.lo .libs/libmint.lax/libmonoruntime.al/mono-debug.lo .libs/libmint.lax/libmonoruntime.al/mono-debug-debugger.lo .libs/libmint.lax/libmonoruntime.al/profiler.lo .libs/libmint.lax/libmonoruntime.al/rand.lo .libs/libmint.lax/libmonoruntime.al/security.lo .libs/libmint.lax/libmonoruntime.al/string-icalls.lo .libs/libmint.lax/libmonoruntime.al/sysmath.lo .libs/libmint.lax/libmonoruntime.al/process.lo .libs/libmint.lax/libmonoruntime.al/environment.lo .libs/libmint.lax/libmonoruntime.al/locales.lo .libs/libmint.lax/libmonoruntime.al/filewatcher.lo  .libs/libmint.lax/libmetadata.al/assembly.lo .libs/libmint.lax/libmetadata.al/domain.lo .libs/libmint.lax/libmetadata.al/opcodes.lo .libs/libmint.lax/libmetadata.al/image.lo .libs/libmint.lax/libmetadata.al/metadata.lo .libs/libmint.lax/libmetadata.al/verify.lo .libs/libmint.lax/libmetadata.al/mono-endian.lo .libs/libmint.lax/libmetadata.al/mono-config.lo .libs/libmint.lax/libmetadata.al/rawbuffer.lo .libs/libmint.lax/libmetadata.al/loader.lo .libs/libmint.lax/libmetadata.al/class.lo .libs/libmint.lax/libmetadata.al/mempool.lo .libs/libmint.lax/libmetadata.al/debug-helpers.lo  .libs/libmint.lax/libwapi.al/atomic.lo .libs/libmint.lax/libwapi.al/context.lo .libs/libmint.lax/libwapi.al/critical-sections.lo .libs/libmint.lax/libwapi.al/daemon.lo .libs/libmint.lax/libwapi.al/daemon-messages.lo .libs/libmint.lax/libwapi.al/error.lo .libs/libmint.lax/libwapi.al/events.lo .libs/libmint.lax/libwapi.al/handles.lo .libs/libmint.lax/libwapi.al/io.lo .libs/libmint.lax/libwapi.al/misc.lo .libs/libmint.lax/libwapi.al/mutexes.lo .libs/libmint.lax/libwapi.al/mono-mutex.lo .libs/libmint.lax/libwapi.al/processes.lo .libs/libmint.lax/libwapi.al/security.lo .libs/libmint.lax/libwapi.al/semaphores.lo .libs/libmint.lax/libwapi.al/shared.lo .libs/libmint.lax/libwapi.al/sockets.lo .libs/libmint.lax/libwapi.al/system.lo .libs/libmint.lax/libwapi.al/threads.lo .libs/libmint.lax/libwapi.al/timefuncs.lo .libs/libmint.lax/libwapi.al/timed-thread.lo .libs/libmint.lax/libwapi.al/wait.lo  .libs/libmint.lax/libmonoutils.al/mono-hash.lo .libs/libmint.lax/libmonoutils.al/mono-md5.lo .libs/libmint.lax/libmonoutils.al/mono-sha1.lo .libs/libmint.lax/libmonoutils.al/mono-logger.lo .libs/libmint.lax/libmonoutils.al/mono-codeman.lo .libs/libmint.lax/libmonoutils.al/monobitset.lo .libs/libmint.lax/libmonoutils.al/mono-math.lo .libs/libmint.lax/libmonoutils.al/strtod.lo .libs/libmint.lax/libmonoutils.al/strenc.lo .libs/libmint.lax/libmonoutils.al/mono-uri.lo  .libs/libmint.lax/libmonoos.al/util.lo  .libs/libmint.lax/libmonogc.al/allchblk.lo .libs/libmint.lax/libmonogc.al/alloc.lo .libs/libmint.lax/libmonogc.al/blacklst.lo .libs/libmint.lax/libmonogc.al/checksums.lo .libs/libmint.lax/libmonogc.al/dbg_mlc.lo .libs/libmint.lax/libmonogc.al/dyn_load.lo .libs/libmint.lax/libmonogc.al/finalize.lo .libs/libmint.lax/libmonogc.al/gc_dlopen.lo .libs/libmint.lax/libmonogc.al/gcj_mlc.lo .libs/libmint.lax/libmonogc.al/headers.lo .libs/libmint.lax/libmonogc.al/aix_irix_threads.lo .libs/libmint.lax/libmonogc.al/malloc.lo .libs/libmint.lax/libmonogc.al/mallocx.lo .libs/libmint.lax/libmonogc.al/mark.lo .libs/libmint.lax/libmonogc.al/mark_rts.lo .libs/libmint.lax/libmonogc.al/misc.lo .libs/libmint.lax/libmonogc.al/new_hblk.lo .libs/libmint.lax/libmonogc.al/obj_map.lo .libs/libmint.lax/libmonogc.al/os_dep.lo .libs/libmint.lax/libmonogc.al/pcr_interface.lo .libs/libmint.lax/libmonogc.al/ptr_chck.lo .libs/libmint.lax/libmonogc.al/real_malloc.lo .libs/libmint.lax/libmonogc.al/reclaim.lo .libs/libmint.lax/libmonogc.al/solaris_pthreads.lo .libs/libmint.lax/libmonogc.al/solaris_threads.lo .libs/libmint.lax/libmonogc.al/specific.lo .libs/libmint.lax/libmonogc.al/stubborn.lo .libs/libmint.lax/libmonogc.al/typd_mlc.lo .libs/libmint.lax/libmonogc.al/backgraph.lo .libs/libmint.lax/libmonogc.al/win32_threads.lo .libs/libmint.lax/libmonogc.al/pthread_support.lo .libs/libmint.lax/libmonogc.al/pthread_stop_world.lo .libs/libmint.lax/libmonogc.al/darwin_stop_world.lo .libs/libmint.lax/libmonogc.al/mach_dep.lo 
ranlib .libs/libmint.a
rm -fr .libs/libmint.lax
creating libmint.la
(cd .libs && rm -f libmint.la && ln -s ../libmint.la libmint.la)
source='main.c' object='main.o' libtool=no \
depfile='.deps/main.Po' tmpdepfile='.deps/main.TPo' \
depmode=gcc3 /bin/sh ../../depcomp \
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c `test -f 'main.c' || echo './'`main.c
/bin/sh ../../libtool --mode=link cc  -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings  -lpthread -o mint  main.o libmint.la -lpthread -lm
cc -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -o .libs/mint main.o  ./.libs/libmint.so -L/usr/local/lib -lgthread-2.0 -lgmodule-2.0 -lglib-2.0 -liconv -lpthread -lm -Wl,--rpath -Wl,/usr/local/lib
creating mint
gmake[3]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/mono/interpreter'
Making all in mini
gmake[3]: Entering directory `/usr/ports/local/mono/work/mono-0.96/mono/mini'
../../mono/monoburg/monoburg -c 1 -p -e ./inssel.brg ./inssel-long32.brg ./inssel-float.brg ./inssel-x86.brg -d inssel.h -s inssel.c
source='genmdesc.c' object='genmdesc-genmdesc.o' libtool=no \
depfile='.deps/genmdesc-genmdesc.Po' tmpdepfile='.deps/genmdesc-genmdesc.TPo' \
depmode=gcc3 /bin/sh ../../depcomp \
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o genmdesc-genmdesc.o `test -f 'genmdesc.c' || echo './'`genmdesc.c
source='helpers.c' object='genmdesc-helpers.o' libtool=no \
depfile='.deps/genmdesc-helpers.Po' tmpdepfile='.deps/genmdesc-helpers.TPo' \
depmode=gcc3 /bin/sh ../../depcomp \
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o genmdesc-helpers.o `test -f 'helpers.c' || echo './'`helpers.c
/bin/sh ../../libtool --mode=link cc  -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings  -lpthread -o genmdesc  genmdesc-genmdesc.o genmdesc-helpers.o ../../mono/metadata/libmonoruntime.la ../../mono/metadata/libmetadata.la ../../mono/io-layer/libwapi.la ../../mono/utils/libmonoutils.la ../../libgc/libmonogc.la  -lm -L/usr/local/lib -lgthread-2.0 -lpthread -lglib-2.0 -liconv   -Wl,--export-dynamic -L/usr/local/lib -lgmodule-2.0 -lglib-2.0 -liconv   -lpthread -lm
mkdir .libs
cc -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -o genmdesc genmdesc-genmdesc.o genmdesc-helpers.o -Wl,--export-dynamic  ../../mono/metadata/.libs/libmonoruntime.al ../../mono/metadata/.libs/libmetadata.al ../../mono/io-layer/.libs/libwapi.al ../../mono/utils/.libs/libmonoutils.al ../../libgc/.libs/libmonogc.al -L/usr/local/lib -lgthread-2.0 -lgmodule-2.0 -lglib-2.0 -liconv -lpthread -lm
./genmdesc ./cpu-pentium.md cpu-pentium.h pentium_desc
gmake  all-am
gmake[4]: Entering directory `/usr/ports/local/mono/work/mono-0.96/mono/mini'
source='mini.c' object='mini.lo' libtool=yes \
depfile='.deps/mini.Plo' tmpdepfile='.deps/mini.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o mini.lo `test -f 'mini.c' || echo './'`mini.c
rm -f .libs/mini.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mini.c -MT mini.lo -MD -MP -MF .deps/mini.TPlo  -fPIC -DPIC -o .libs/mini.lo
mini.c: In function `type_from_typename':
mini.c:5935: warning: `klass' might be used uninitialized in this function
mini.c: At top level:
mini.c:1538: warning: `mono_compile_get_interface_var' defined but not used
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mini.c -MT mini.lo -MD -MP -MF .deps/mini.TPlo -o mini.o >/dev/null 2>&1
mv -f .libs/mini.lo mini.lo
source='trace.c' object='trace.lo' libtool=yes \
depfile='.deps/trace.Plo' tmpdepfile='.deps/trace.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o trace.lo `test -f 'trace.c' || echo './'`trace.c
rm -f .libs/trace.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c trace.c -MT trace.lo -MD -MP -MF .deps/trace.TPlo  -fPIC -DPIC -o .libs/trace.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c trace.c -MT trace.lo -MD -MP -MF .deps/trace.TPlo -o trace.o >/dev/null 2>&1
mv -f .libs/trace.lo trace.lo
source='dominators.c' object='dominators.lo' libtool=yes \
depfile='.deps/dominators.Plo' tmpdepfile='.deps/dominators.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o dominators.lo `test -f 'dominators.c' || echo './'`dominators.c
rm -f .libs/dominators.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c dominators.c -MT dominators.lo -MD -MP -MF .deps/dominators.TPlo  -fPIC -DPIC -o .libs/dominators.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c dominators.c -MT dominators.lo -MD -MP -MF .deps/dominators.TPlo -o dominators.o >/dev/null 2>&1
mv -f .libs/dominators.lo dominators.lo
source='cfold.c' object='cfold.lo' libtool=yes \
depfile='.deps/cfold.Plo' tmpdepfile='.deps/cfold.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o cfold.lo `test -f 'cfold.c' || echo './'`cfold.c
rm -f .libs/cfold.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c cfold.c -MT cfold.lo -MD -MP -MF .deps/cfold.TPlo  -fPIC -DPIC -o .libs/cfold.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c cfold.c -MT cfold.lo -MD -MP -MF .deps/cfold.TPlo -o cfold.o >/dev/null 2>&1
mv -f .libs/cfold.lo cfold.lo
source='regalloc.c' object='regalloc.lo' libtool=yes \
depfile='.deps/regalloc.Plo' tmpdepfile='.deps/regalloc.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o regalloc.lo `test -f 'regalloc.c' || echo './'`regalloc.c
rm -f .libs/regalloc.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c regalloc.c -MT regalloc.lo -MD -MP -MF .deps/regalloc.TPlo  -fPIC -DPIC -o .libs/regalloc.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c regalloc.c -MT regalloc.lo -MD -MP -MF .deps/regalloc.TPlo -o regalloc.o >/dev/null 2>&1
mv -f .libs/regalloc.lo regalloc.lo
source='helpers.c' object='helpers.lo' libtool=yes \
depfile='.deps/helpers.Plo' tmpdepfile='.deps/helpers.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o helpers.lo `test -f 'helpers.c' || echo './'`helpers.c
rm -f .libs/helpers.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c helpers.c -MT helpers.lo -MD -MP -MF .deps/helpers.TPlo  -fPIC -DPIC -o .libs/helpers.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c helpers.c -MT helpers.lo -MD -MP -MF .deps/helpers.TPlo -o helpers.o >/dev/null 2>&1
mv -f .libs/helpers.lo helpers.lo
source='liveness.c' object='liveness.lo' libtool=yes \
depfile='.deps/liveness.Plo' tmpdepfile='.deps/liveness.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o liveness.lo `test -f 'liveness.c' || echo './'`liveness.c
rm -f .libs/liveness.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c liveness.c -MT liveness.lo -MD -MP -MF .deps/liveness.TPlo  -fPIC -DPIC -o .libs/liveness.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c liveness.c -MT liveness.lo -MD -MP -MF .deps/liveness.TPlo -o liveness.o >/dev/null 2>&1
mv -f .libs/liveness.lo liveness.lo
source='ssa.c' object='ssa.lo' libtool=yes \
depfile='.deps/ssa.Plo' tmpdepfile='.deps/ssa.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o ssa.lo `test -f 'ssa.c' || echo './'`ssa.c
rm -f .libs/ssa.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c ssa.c -MT ssa.lo -MD -MP -MF .deps/ssa.TPlo  -fPIC -DPIC -o .libs/ssa.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c ssa.c -MT ssa.lo -MD -MP -MF .deps/ssa.TPlo -o ssa.o >/dev/null 2>&1
mv -f .libs/ssa.lo ssa.lo
source='abcremoval.c' object='abcremoval.lo' libtool=yes \
depfile='.deps/abcremoval.Plo' tmpdepfile='.deps/abcremoval.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o abcremoval.lo `test -f 'abcremoval.c' || echo './'`abcremoval.c
rm -f .libs/abcremoval.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c abcremoval.c -MT abcremoval.lo -MD -MP -MF .deps/abcremoval.TPlo  -fPIC -DPIC -o .libs/abcremoval.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c abcremoval.c -MT abcremoval.lo -MD -MP -MF .deps/abcremoval.TPlo -o abcremoval.o >/dev/null 2>&1
mv -f .libs/abcremoval.lo abcremoval.lo
source='driver.c' object='driver.lo' libtool=yes \
depfile='.deps/driver.Plo' tmpdepfile='.deps/driver.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o driver.lo `test -f 'driver.c' || echo './'`driver.c
rm -f .libs/driver.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c driver.c -MT driver.lo -MD -MP -MF .deps/driver.TPlo  -fPIC -DPIC -o .libs/driver.lo
driver.c: In function `mono_main':
driver.c:665: warning: assignment discards qualifiers from pointer target type
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c driver.c -MT driver.lo -MD -MP -MF .deps/driver.TPlo -o driver.o >/dev/null 2>&1
mv -f .libs/driver.lo driver.lo
source='debug-mini.c' object='debug-mini.lo' libtool=yes \
depfile='.deps/debug-mini.Plo' tmpdepfile='.deps/debug-mini.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o debug-mini.lo `test -f 'debug-mini.c' || echo './'`debug-mini.c
rm -f .libs/debug-mini.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c debug-mini.c -MT debug-mini.lo -MD -MP -MF .deps/debug-mini.TPlo  -fPIC -DPIC -o .libs/debug-mini.lo
debug-mini.c:506: warning: no previous prototype for `mono_init_debugger'
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c debug-mini.c -MT debug-mini.lo -MD -MP -MF .deps/debug-mini.TPlo -o debug-mini.o >/dev/null 2>&1
mv -f .libs/debug-mini.lo debug-mini.lo
source='linear-scan.c' object='linear-scan.lo' libtool=yes \
depfile='.deps/linear-scan.Plo' tmpdepfile='.deps/linear-scan.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o linear-scan.lo `test -f 'linear-scan.c' || echo './'`linear-scan.c
rm -f .libs/linear-scan.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c linear-scan.c -MT linear-scan.lo -MD -MP -MF .deps/linear-scan.TPlo  -fPIC -DPIC -o .libs/linear-scan.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c linear-scan.c -MT linear-scan.lo -MD -MP -MF .deps/linear-scan.TPlo -o linear-scan.o >/dev/null 2>&1
mv -f .libs/linear-scan.lo linear-scan.lo
source='aot.c' object='aot.lo' libtool=yes \
depfile='.deps/aot.Plo' tmpdepfile='.deps/aot.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o aot.lo `test -f 'aot.c' || echo './'`aot.c
rm -f .libs/aot.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c aot.c -MT aot.lo -MD -MP -MF .deps/aot.TPlo  -fPIC -DPIC -o .libs/aot.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c aot.c -MT aot.lo -MD -MP -MF .deps/aot.TPlo -o aot.o >/dev/null 2>&1
mv -f .libs/aot.lo aot.lo
source='graph.c' object='graph.lo' libtool=yes \
depfile='.deps/graph.Plo' tmpdepfile='.deps/graph.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o graph.lo `test -f 'graph.c' || echo './'`graph.c
rm -f .libs/graph.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c graph.c -MT graph.lo -MD -MP -MF .deps/graph.TPlo  -fPIC -DPIC -o .libs/graph.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c graph.c -MT graph.lo -MD -MP -MF .deps/graph.TPlo -o graph.o >/dev/null 2>&1
mv -f .libs/graph.lo graph.lo
source='mini-exceptions.c' object='mini-exceptions.lo' libtool=yes \
depfile='.deps/mini-exceptions.Plo' tmpdepfile='.deps/mini-exceptions.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o mini-exceptions.lo `test -f 'mini-exceptions.c' || echo './'`mini-exceptions.c
rm -f .libs/mini-exceptions.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mini-exceptions.c -MT mini-exceptions.lo -MD -MP -MF .deps/mini-exceptions.TPlo  -fPIC -DPIC -o .libs/mini-exceptions.lo
mini-exceptions.c: In function `mono_handle_exception':
mini-exceptions.c:208: warning: `initial_stack_trace' might be used uninitialized in this function
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mini-exceptions.c -MT mini-exceptions.lo -MD -MP -MF .deps/mini-exceptions.TPlo -o mini-exceptions.o >/dev/null 2>&1
mv -f .libs/mini-exceptions.lo mini-exceptions.lo
source='mini-x86.c' object='mini-x86.lo' libtool=yes \
depfile='.deps/mini-x86.Plo' tmpdepfile='.deps/mini-x86.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o mini-x86.lo `test -f 'mini-x86.c' || echo './'`mini-x86.c
rm -f .libs/mini-x86.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mini-x86.c -MT mini-x86.lo -MD -MP -MF .deps/mini-x86.TPlo  -fPIC -DPIC -o .libs/mini-x86.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c mini-x86.c -MT mini-x86.lo -MD -MP -MF .deps/mini-x86.TPlo -o mini-x86.o >/dev/null 2>&1
mv -f .libs/mini-x86.lo mini-x86.lo
source='exceptions-x86.c' object='exceptions-x86.lo' libtool=yes \
depfile='.deps/exceptions-x86.Plo' tmpdepfile='.deps/exceptions-x86.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o exceptions-x86.lo `test -f 'exceptions-x86.c' || echo './'`exceptions-x86.c
rm -f .libs/exceptions-x86.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c exceptions-x86.c -MT exceptions-x86.lo -MD -MP -MF .deps/exceptions-x86.TPlo  -fPIC -DPIC -o .libs/exceptions-x86.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c exceptions-x86.c -MT exceptions-x86.lo -MD -MP -MF .deps/exceptions-x86.TPlo -o exceptions-x86.o >/dev/null 2>&1
mv -f .libs/exceptions-x86.lo exceptions-x86.lo
source='tramp-x86.c' object='tramp-x86.lo' libtool=yes \
depfile='.deps/tramp-x86.Plo' tmpdepfile='.deps/tramp-x86.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o tramp-x86.lo `test -f 'tramp-x86.c' || echo './'`tramp-x86.c
rm -f .libs/tramp-x86.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c tramp-x86.c -MT tramp-x86.lo -MD -MP -MF .deps/tramp-x86.TPlo  -fPIC -DPIC -o .libs/tramp-x86.lo
tramp-x86.c: In function `x86_magic_trampoline':
tramp-x86.c:92: warning: `reg' might be used uninitialized in this function
tramp-x86.c:93: warning: `disp' might be used uninitialized in this function
tramp-x86.c:94: warning: `o' might be used uninitialized in this function
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c tramp-x86.c -MT tramp-x86.lo -MD -MP -MF .deps/tramp-x86.TPlo -o tramp-x86.o >/dev/null 2>&1
mv -f .libs/tramp-x86.lo tramp-x86.lo
source='inssel.c' object='inssel.lo' libtool=yes \
depfile='.deps/inssel.Plo' tmpdepfile='.deps/inssel.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c -o inssel.lo `test -f 'inssel.c' || echo './'`inssel.c
rm -f .libs/inssel.lo
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c inssel.c -MT inssel.lo -MD -MP -MF .deps/inssel.TPlo  -fPIC -DPIC -o .libs/inssel.lo
inssel.c: In function `mono_burg_emit_175':
inssel.c:2373: warning: `const_reg' might be used uninitialized in this function
inssel.c:2392: warning: `const_reg' might be used uninitialized in this function
inssel.c: In function `mono_burg_emit_178':
inssel.c:2604: warning: `const_reg' might be used uninitialized in this function
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c inssel.c -MT inssel.lo -MD -MP -MF .deps/inssel.TPlo -o inssel.o >/dev/null 2>&1
mv -f .libs/inssel.lo inssel.lo
/bin/sh ../../libtool --mode=link cc  -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings  -lpthread -o libmono.la -rpath /usr/local/lib -Wl,-version-script=./ldscript mini.lo trace.lo dominators.lo cfold.lo regalloc.lo helpers.lo liveness.lo ssa.lo abcremoval.lo driver.lo debug-mini.lo linear-scan.lo aot.lo graph.lo mini-exceptions.lo mini-x86.lo exceptions-x86.lo tramp-x86.lo inssel.lo ../../mono/metadata/libmonoruntime.la ../../mono/metadata/libmetadata.la ../../mono/io-layer/libwapi.la ../../mono/utils/libmonoutils.la ../../libgc/libmonogc.la  -lpthread -lm
rm -fr .libs/libmono.la .libs/libmono.* .libs/libmono.*
cc -shared  mini.lo trace.lo dominators.lo cfold.lo regalloc.lo helpers.lo liveness.lo ssa.lo abcremoval.lo driver.lo debug-mini.lo linear-scan.lo aot.lo graph.lo mini-exceptions.lo mini-x86.lo exceptions-x86.lo tramp-x86.lo inssel.lo -Wl,--whole-archive ../../mono/metadata/.libs/libmonoruntime.al ../../mono/metadata/.libs/libmetadata.al ../../mono/io-layer/.libs/libwapi.al ../../mono/utils/.libs/libmonoutils.al ../../libgc/.libs/libmonogc.al -Wl,--no-whole-archive  -lpthread -lm  -Wl,-version-script=./ldscript -Wl,-soname -Wl,libmono.so.0 -o .libs/libmono.so.0
(cd .libs && rm -f libmono.so && ln -s libmono.so.0 libmono.so)
(cd .libs && rm -f libmono.so && ln -s libmono.so.0 libmono.so)
rm -fr .libs/libmono.lax
mkdir .libs/libmono.lax
rm -fr .libs/libmono.lax/libmonoruntime.al
mkdir .libs/libmono.lax/libmonoruntime.al
(cd .libs/libmono.lax/libmonoruntime.al && ar x /usr/ports/local/mono/work/mono-0.96/mono/mini/../../mono/metadata/.libs/libmonoruntime.al)
rm -fr .libs/libmono.lax/libmetadata.al
mkdir .libs/libmono.lax/libmetadata.al
(cd .libs/libmono.lax/libmetadata.al && ar x /usr/ports/local/mono/work/mono-0.96/mono/mini/../../mono/metadata/.libs/libmetadata.al)
rm -fr .libs/libmono.lax/libwapi.al
mkdir .libs/libmono.lax/libwapi.al
(cd .libs/libmono.lax/libwapi.al && ar x /usr/ports/local/mono/work/mono-0.96/mono/mini/../../mono/io-layer/.libs/libwapi.al)
rm -fr .libs/libmono.lax/libmonoutils.al
mkdir .libs/libmono.lax/libmonoutils.al
(cd .libs/libmono.lax/libmonoutils.al && ar x /usr/ports/local/mono/work/mono-0.96/mono/mini/../../mono/utils/.libs/libmonoutils.al)
rm -fr .libs/libmono.lax/libmonogc.al
mkdir .libs/libmono.lax/libmonogc.al
(cd .libs/libmono.lax/libmonogc.al && ar x /usr/ports/local/mono/work/mono-0.96/mono/mini/../../libgc/.libs/libmonogc.al)
ar cru .libs/libmono.a  mini.o trace.o dominators.o cfold.o regalloc.o helpers.o liveness.o ssa.o abcremoval.o driver.o debug-mini.o linear-scan.o aot.o graph.o mini-exceptions.o mini-x86.o exceptions-x86.o tramp-x86.o inssel.o  .libs/libmono.lax/libmonoruntime.al/reflection.lo .libs/libmono.lax/libmonoruntime.al/object.lo .libs/libmono.lax/libmonoruntime.al/icall.lo .libs/libmono.lax/libmonoruntime.al/decimal.lo .libs/libmono.lax/libmonoruntime.al/gc.lo .libs/libmono.lax/libmonoruntime.al/marshal.lo .libs/libmono.lax/libmonoruntime.al/monitor.lo .libs/libmono.lax/libmonoruntime.al/threads.lo .libs/libmono.lax/libmonoruntime.al/threadpool.lo .libs/libmono.lax/libmonoruntime.al/file-io.lo .libs/libmono.lax/libmonoruntime.al/socket-io.lo .libs/libmono.lax/libmonoruntime.al/exception.lo .libs/libmono.lax/libmonoruntime.al/unicode.lo .libs/libmono.lax/libmonoruntime.al/appdomain.lo .libs/libmono.lax/libmonoruntime.al/debug-mono-symfile.lo .libs/libmono.lax/libmonoruntime.al/mono-debug.lo .libs/libmono.lax/libmonoruntime.al/mono-debug-debugger.lo .libs/libmono.lax/libmonoruntime.al/profiler.lo .libs/libmono.lax/libmonoruntime.al/rand.lo .libs/libmono.lax/libmonoruntime.al/security.lo .libs/libmono.lax/libmonoruntime.al/string-icalls.lo .libs/libmono.lax/libmonoruntime.al/sysmath.lo .libs/libmono.lax/libmonoruntime.al/process.lo .libs/libmono.lax/libmonoruntime.al/environment.lo .libs/libmono.lax/libmonoruntime.al/locales.lo .libs/libmono.lax/libmonoruntime.al/filewatcher.lo  .libs/libmono.lax/libmetadata.al/assembly.lo .libs/libmono.lax/libmetadata.al/domain.lo .libs/libmono.lax/libmetadata.al/opcodes.lo .libs/libmono.lax/libmetadata.al/image.lo .libs/libmono.lax/libmetadata.al/metadata.lo .libs/libmono.lax/libmetadata.al/verify.lo .libs/libmono.lax/libmetadata.al/mono-endian.lo .libs/libmono.lax/libmetadata.al/mono-config.lo .libs/libmono.lax/libmetadata.al/rawbuffer.lo .libs/libmono.lax/libmetadata.al/loader.lo .libs/libmono.lax/libmetadata.al/class.lo .libs/libmono.lax/libmetadata.al/mempool.lo .libs/libmono.lax/libmetadata.al/debug-helpers.lo  .libs/libmono.lax/libwapi.al/atomic.lo .libs/libmono.lax/libwapi.al/context.lo .libs/libmono.lax/libwapi.al/critical-sections.lo .libs/libmono.lax/libwapi.al/daemon.lo .libs/libmono.lax/libwapi.al/daemon-messages.lo .libs/libmono.lax/libwapi.al/error.lo .libs/libmono.lax/libwapi.al/events.lo .libs/libmono.lax/libwapi.al/handles.lo .libs/libmono.lax/libwapi.al/io.lo .libs/libmono.lax/libwapi.al/misc.lo .libs/libmono.lax/libwapi.al/mutexes.lo .libs/libmono.lax/libwapi.al/mono-mutex.lo .libs/libmono.lax/libwapi.al/processes.lo .libs/libmono.lax/libwapi.al/security.lo .libs/libmono.lax/libwapi.al/semaphores.lo .libs/libmono.lax/libwapi.al/shared.lo .libs/libmono.lax/libwapi.al/sockets.lo .libs/libmono.lax/libwapi.al/system.lo .libs/libmono.lax/libwapi.al/threads.lo .libs/libmono.lax/libwapi.al/timefuncs.lo .libs/libmono.lax/libwapi.al/timed-thread.lo .libs/libmono.lax/libwapi.al/wait.lo  .libs/libmono.lax/libmonoutils.al/mono-hash.lo .libs/libmono.lax/libmonoutils.al/mono-md5.lo .libs/libmono.lax/libmonoutils.al/mono-sha1.lo .libs/libmono.lax/libmonoutils.al/mono-logger.lo .libs/libmono.lax/libmonoutils.al/mono-codeman.lo .libs/libmono.lax/libmonoutils.al/monobitset.lo .libs/libmono.lax/libmonoutils.al/mono-math.lo .libs/libmono.lax/libmonoutils.al/strtod.lo .libs/libmono.lax/libmonoutils.al/strenc.lo .libs/libmono.lax/libmonoutils.al/mono-uri.lo  .libs/libmono.lax/libmonogc.al/allchblk.lo .libs/libmono.lax/libmonogc.al/alloc.lo .libs/libmono.lax/libmonogc.al/blacklst.lo .libs/libmono.lax/libmonogc.al/checksums.lo .libs/libmono.lax/libmonogc.al/dbg_mlc.lo .libs/libmono.lax/libmonogc.al/dyn_load.lo .libs/libmono.lax/libmonogc.al/finalize.lo .libs/libmono.lax/libmonogc.al/gc_dlopen.lo .libs/libmono.lax/libmonogc.al/gcj_mlc.lo .libs/libmono.lax/libmonogc.al/headers.lo .libs/libmono.lax/libmonogc.al/aix_irix_threads.lo .libs/libmono.lax/libmonogc.al/malloc.lo .libs/libmono.lax/libmonogc.al/mallocx.lo .libs/libmono.lax/libmonogc.al/mark.lo .libs/libmono.lax/libmonogc.al/mark_rts.lo .libs/libmono.lax/libmonogc.al/misc.lo .libs/libmono.lax/libmonogc.al/new_hblk.lo .libs/libmono.lax/libmonogc.al/obj_map.lo .libs/libmono.lax/libmonogc.al/os_dep.lo .libs/libmono.lax/libmonogc.al/pcr_interface.lo .libs/libmono.lax/libmonogc.al/ptr_chck.lo .libs/libmono.lax/libmonogc.al/real_malloc.lo .libs/libmono.lax/libmonogc.al/reclaim.lo .libs/libmono.lax/libmonogc.al/solaris_pthreads.lo .libs/libmono.lax/libmonogc.al/solaris_threads.lo .libs/libmono.lax/libmonogc.al/specific.lo .libs/libmono.lax/libmonogc.al/stubborn.lo .libs/libmono.lax/libmonogc.al/typd_mlc.lo .libs/libmono.lax/libmonogc.al/backgraph.lo .libs/libmono.lax/libmonogc.al/win32_threads.lo .libs/libmono.lax/libmonogc.al/pthread_support.lo .libs/libmono.lax/libmonogc.al/pthread_stop_world.lo .libs/libmono.lax/libmonogc.al/darwin_stop_world.lo .libs/libmono.lax/libmonogc.al/mach_dep.lo 
ranlib .libs/libmono.a
rm -fr .libs/libmono.lax
creating libmono.la
(cd .libs && rm -f libmono.la && ln -s ../libmono.la libmono.la)
source='main.c' object='main.o' libtool=no \
depfile='.deps/main.Po' tmpdepfile='.deps/main.TPo' \
depmode=gcc3 /bin/sh ../../depcomp \
cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../../libgc/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include   -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include    -DUSE_PTHREAD_SPECIFIC -UUSE_COMPILER_TLS -D_THREAD_SAFE -DGC_FREEBSD_THREADS   -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c `test -f 'main.c' || echo './'`main.c
/bin/sh ../../libtool --mode=link cc  -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings  -lpthread -o mono -export-dynamic main.o libmono.la -L/usr/local/lib -lgthread-2.0 -lpthread -lglib-2.0 -liconv   -Wl,--export-dynamic -L/usr/local/lib -lgmodule-2.0 -lglib-2.0 -liconv   -lm  -lpthread -lm
cc -O -pipe -march=athlon -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -o .libs/mono main.o -Wl,--export-dynamic -Wl,--export-dynamic  ./.libs/libmono.so -L/usr/local/lib -lgthread-2.0 -lgmodule-2.0 -lglib-2.0 -liconv -lpthread -lm -Wl,--rpath -Wl,/usr/local/lib
./.libs/libmono.so: undefined reference to `___tls_get_addr'
gmake[4]: *** [mono] Error 1
gmake[4]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/mono/mini'
gmake[3]: *** [all] Error 2
gmake[3]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/mono/mini'
gmake[2]: *** [all-recursive] Error 1
gmake[2]: Leaving directory `/usr/ports/local/mono/work/mono-0.96/mono'
gmake[1]: *** [all-recursive] Error 1
gmake[1]: Leaving directory `/usr/ports/local/mono/work/mono-0.96'
gmake: *** [all] Error 2
*** Error code 2

Stop in /usr/ports/local/mono.

Script done on Fri Jun 25 17:12:28 2004


More information about the freebsd-current mailing list