Re: Issues installing GCC libraries

2014-03-11 Thread Jonathan Wakely
On 11 March 2014 21:33, Falk, Katerina wrote: > Dear Administrator, > > I tried installing GCC libraries, but it does not seem to work. I do not > understand the problem why. This is the output from my Terminal window: This mailing list is for development of GCC, for help using GC

Issues installing GCC libraries

2014-03-11 Thread Falk, Katerina
Dear Administrator, I tried installing GCC libraries, but it does not seem to work. I do not understand the problem why. This is the output from my Terminal window: 1282816:~ kfalk$ cd Desktop/ 1282816:Desktop kfalk$ cd gcc-4.8.2/ 1282816:gcc-4.8.2 kfalk$ ./configure checking build system type

Re: [RFC] Check licenses of GCC libraries

2013-09-18 Thread Joseph S. Myers
On Thu, 19 Sep 2013, Maxim Kuvyrkov wrote: > Interestingly, the attached script pointed out potential license > problems in C6x libgcc files: > > File libgcc/config/c6x/eqd.c contains license(s) LGPL-2.1+ > File libgcc/config/c6x/eqf.c contains license(s) LGPL-2.1+ > File libgcc/config/c6x/ged.c

Re: gcc libraries

2006-08-04 Thread Mike Stump
On Aug 4, 2006, at 6:31 PM, supradip dey wrote: What are the header files & functions used by gcc? There are many, please see the source. Is it same as borland turbo header files ? No.

gcc libraries

2006-08-04 Thread supradip dey
it will be so nice of you if you inform me : What are the header files & functions used by gcc ?Is it same as borland turbo header files ? regards, supradip dey __ Yahoo! India Answers: Share what you know. Learn something

Re: RFC: An option to link against static gcc libraries

2005-12-30 Thread H. J. Lu
On Fri, Dec 30, 2005 at 08:05:13PM +0100, Jakub Jelinek wrote: > On Fri, Dec 30, 2005 at 10:58:16AM -0800, H. J. Lu wrote: > > > One, this will not work at all libobjc or libgcj since they > > > require lookups at runtime. > > > > Are you saying "gcc -static" doesn't work with libobjc and libgcj?

Re: RFC: An option to link against static gcc libraries

2005-12-30 Thread David Daney
nt to link against static gcc libraries, like libstdc++.a, libgfortran.a, libgcj.a, , but against dynamic system libraries, when we building executables. Currently, there is no easy way to do it. We have -static-libgcc for libgcc.a. It will be nice to have -static-gcclibs or something like tha

Re: RFC: An option to link against static gcc libraries

2005-12-30 Thread Jakub Jelinek
On Fri, Dec 30, 2005 at 10:58:16AM -0800, H. J. Lu wrote: > > One, this will not work at all libobjc or libgcj since they > > require lookups at runtime. > > Are you saying "gcc -static" doesn't work with libobjc and libgcj? It certainly doesn't work with libgcj (well, you can link in libgcj.a, b

Re: RFC: An option to link against static gcc libraries

2005-12-30 Thread Andrew Pinski
On Dec 30, 2005, at 1:58 PM, H. J. Lu wrote: Are you saying "gcc -static" doesn't work with libobjc and libgcj? Yes, they have never really worked. You need to cause to import all of the .a file instead of just letting the linker link in the parts that it says it needs. -- Pinski

Re: RFC: An option to link against static gcc libraries

2005-12-30 Thread H. J. Lu
tability, we may want to link against static gcc libraries, like > >libstdc++.a, libgfortran.a, libgcj.a, , but against dynamic system > >libraries, when we building executables. Currently, there is no easy > >way to do it. We have -static-libgcc for libgcc.a. It will be nice to

Re: RFC: An option to link against static gcc libraries

2005-12-30 Thread Andrew Pinski
On Dec 30, 2005, at 1:53 PM, H. J. Lu wrote: Gcc build executable linking against dynamic libraries by default. "-static" will link against all static libraries. For run-time portability, we may want to link against static gcc libraries, like libstdc++.a, libgfortran.a, libgcj.a,

RFC: An option to link against static gcc libraries

2005-12-30 Thread H. J. Lu
Gcc build executable linking against dynamic libraries by default. "-static" will link against all static libraries. For run-time portability, we may want to link against static gcc libraries, like libstdc++.a, libgfortran.a, libgcj.a, , but against dynamic system libraries, when w