This is the mail archive of the gdb@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: gdb build using different compiler


Andrew Cagney <cagney@gnu.org> writes:

>> Hi Manoj,
>> 
>>>> How do I build gdb 6.1 using a compiler in /opt/tools/gcc instead of
>>>> /usr/bin/gcc?
>> Put /opt/tools/gcc/bin in your $PATH variable in front of /usr/bin.
>>   PATH=/opt/tools/gcc/bin:$PATH
>>   export PATH
>
> FYI, a possibly better way is:
>
> ( CC=/opt/tools/gcc/bin/gcc ; export CC ; CXX=/opt/tools/gcc/bin/c++ ;
> export CXX ; ..../configure )

Even better:

CC=/opt/tools/gcc/bin/gcc CXX=/opt/tools/gcc/bin/c++ ..../configure

(althought I'm not sure whether the OP not actually wants
CC=/opt/tools/gcc.)

Andreas.

-- 
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE Linux AG, Maxfeldstraße 5, 90409 Nürnberg, Germany
Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."


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