|
From: Keith M. <kei...@to...> - 2007-04-26 08:26:37
|
fiveight wrote: > I run this command: > > gcc.exe -v -shared -nostdlib --disable-auto-image-base ... > > Why ld.exe still have the --enable-auto-image-base option. It is defined in the specs file, to be applied for every invocation of the linker. > How can I set my own image base? If you want to disable auto-image-base, you will need to modify the specs file. (WARNING: messing this up can break your compiler in interesting ways). > And ../gcc-3.4.5/configure dir puzzles me, I can not find this dir > on my disk, why? It's the *command* used to invoke the configure script, when building GCC from source. You will only find this, if you download a source package, from which to *build* GCC. Regards, Keith. |