|
From: Shamith M. <sha...@gm...> - 2009-06-09 07:47:22
|
OS: MacOSX 10.5.6 While given a make, the following error happen... gcc -arch i386 -O2 -g -Wmissing-prototypes -Wall -Wshadow -Wpointer-arith -Wstrict-prototypes -Wmissing-declarations -Wno-format-zero-length -fno-strict-aliasing -mmacosx-version-min=10.5 -fno-stack-protector -mdynamic-no-pic -O2 -Wno-long-long -Wno-pointer-sign -Wdeclaration-after-statement -fno-stack-protector -nodefaultlibs -nostartfiles -Wl,-u,__start -Wl,-e,__start -Wl,-bind_at_load /usr/lib/dyld -arch i386 -Wl,-seg1addr,0xf0080000 -Wl,-stack_addr,0xf0080000 -Wl,-stack_size,0x80000 -Wl,-pagezero_size,0xf0000000 -o memcheck-x86-darwin memcheck_x86_darwin-mc_leakcheck.o memcheck_x86_darwin-mc_malloc_wrappers.o memcheck_x86_darwin-mc_main.o memcheck_x86_darwin-mc_translate.o memcheck_x86_darwin-mc_machine.o memcheck_x86_darwin-mc_errors.o ../coregrind/libcoregrind-x86-darwin.a ../VEX/libvex-x86-darwin.a -lgcc ld: in ../VEX/libvex-x86-darwin.a, archive has no table of contents collect2: ld returned 1 exit status make[3]: *** [memcheck-x86-darwin] Error 1 make[2]: *** [all-recursive] Error 1 make[1]: *** [all-recursive] Error 1 make: *** [all] Error 2 Any help??? Thanks and Regards, Shamith |
|
From: Nicholas N. <n.n...@gm...> - 2009-06-09 08:00:13
|
On Tue, Jun 9, 2009 at 5:47 PM, Shamith Mukundan<sha...@gm...> wrote: > OS: MacOSX 10.5.6 > > While given a make, the following error happen... > > > gcc -arch i386 -O2 -g -Wmissing-prototypes -Wall -Wshadow -Wpointer-arith > -Wstrict-prototypes -Wmissing-declarations -Wno-format-zero-length > -fno-strict-aliasing -mmacosx-version-min=10.5 -fno-stack-protector > -mdynamic-no-pic -O2 -Wno-long-long -Wno-pointer-sign > -Wdeclaration-after-statement -fno-stack-protector -nodefaultlibs > -nostartfiles -Wl,-u,__start -Wl,-e,__start -Wl,-bind_at_load /usr/lib/dyld > -arch i386 -Wl,-seg1addr,0xf0080000 -Wl,-stack_addr,0xf0080000 > -Wl,-stack_size,0x80000 -Wl,-pagezero_size,0xf0000000 -o > memcheck-x86-darwin memcheck_x86_darwin-mc_leakcheck.o > memcheck_x86_darwin-mc_malloc_wrappers.o memcheck_x86_darwin-mc_main.o > memcheck_x86_darwin-mc_translate.o memcheck_x86_darwin-mc_machine.o > memcheck_x86_darwin-mc_errors.o ../coregrind/libcoregrind-x86-darwin.a > ../VEX/libvex-x86-darwin.a -lgcc > ld: in ../VEX/libvex-x86-darwin.a, archive has no table of contents > collect2: ld returned 1 exit status > make[3]: *** [memcheck-x86-darwin] Error 1 > make[2]: *** [all-recursive] Error 1 > make[1]: *** [all-recursive] Error 1 > make: *** [all] Error 2 See https://bugs.kde.org/show_bug.cgi?id=195287. It should be fixed soon, until then change the "$(AR) clq" in VEX/Makefile to "$(AR) crus". Nick |
|
From: Shamith M. <sha...@gm...> - 2009-06-09 08:12:39
|
Did a make clean and then a make.. It worked... Thanks a loot.... :) |