This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Compiling GCC with -rpath


> However, a lot of the compile lines include both CFLAGS and CPPFLAGS and
> the make dies if the flags are included twice.  How can I have these
> flags applied against each dynamically linked executable only once?

This is not a problem after all, I made an unrelated mistake.

When cross compiling, the gcc make install puts a copy of cross tools in
exec-prefix/bin prefixed with the target name, and another copy in
exec-prefix/target/bin without the prefix.  3.0.1 doesn't put gcj in the
second location, only the first, so I hard linked the bin/target-gcj to
target/bin/gcj.

Basically, I forgot the hard link the last time through and tested the
wrong build of gcj.

Sorry!  Mike.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]