Open GoogleCodeExporter opened 9 years ago
I just tried this patch on Mac OS X 10.6.6 with
i686-apple-darwin9-gcc-4.0.1 (GCC) 4.0.1 (Apple Inc. build 5493)
and got this build error
gcc -o src/platform/posix/build/main -Wl,-Map=src/platform/posix/build/main.map
src/platform/posix/build/main.o src/platform/posix/build/plat.o
src/platform/posix/build/vm/libpmvm.a
src/platform/posix/build/pm_generated_objs.o -lm
ld: unknown option: -Map=src/platform/posix/build/main.map
collect2: ld returned 1 exit status
scons: *** [src/platform/posix/build/main] Error 1
scons: building terminated because of errors.
The trouble spot seems to be the difference between "-map" and "-Map". Let's
see if we can find an argument acceptable to both compilers. If we can't I'll
accept the arguments compatible with gcc 4.4.
Original comment by dwhall...@gmail.com
on 9 Apr 2011 at 7:46
Okay, the fault is that the Mac uses a special linker. From
(http://developer.apple.com/tools/gcc_overview.html ):
"""
If you choose to stop the build process after compilation, you can then link by
invoking the compiler again but allowing it to continue after the compilation
step. This is the recommended approach. If you invoke the linker manually you
may spend a lot of time getting the linker flags correct.
"""
Original comment by dwhall...@gmail.com
on 9 Apr 2011 at 8:09
Original issue reported on code.google.com by
bjones460@gmail.com
on 29 Mar 2011 at 4:48Attachments: