Displaying 20 results from an estimated 731 matches for "libgcc_s".
2009 Sep 18
2
[LLVMdev] OT: intel darwin losing primary target status
Nick,
How exactly do you envision this being done? Looking at the contents
of config/darwin.h, I see...
/* Support -mmacosx-version-min by supplying different (stub) libgcc_s.dylib
libraries to link against, and by not linking against libgcc_s on
earlier-than-10.3.9.
Note that by default, -lgcc_eh is not linked against! This is
because in a future version of Darwin the EH frame information may
be in a new format, or the fallback routine might be changed...
2009 Sep 18
0
[LLVMdev] OT: intel darwin losing primary target status
...win uses two-level-name-space. That means that at build
time the linker records where it found each dylib (SO) symbol. (It
records the path the dylib supplied as its "install name" - not just
the leafname as SO_NEEDED does.)
On a SnowLeopard system you *can* link against /usr/lib/libgcc_s.
10.5.dylib, but the linker will not record any symbols coming from
it. In fact, the link order does not matter. That is because /usr/
lib/libgcc_s.10.5.dylib has magic symbols in it that say if you are
targeting 10.6 then _Unwind_Resume (and other other symbols) are not
in that dylib, s...
2011 Aug 06
2
[LLVMdev] llvm-gcc near tip causing crash in /usr/bin/ld due to memory corruption on linux x86_64
.../pkgs/llvm-gcc-4.2-rw/x86_64-unknown-linux-gnu/sys-include -O2 -O2 -g -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -shared -nodefaultlibs -Wl,--soname=libgcc_s.so.1 -Wl,--version-script=libgcc/./libgcc.map -o ./libgcc_s.so.1.tmp libgcc/./_muldi3_s.o libgcc/./_negdi2_s.o libgcc/./_lshrdi3_s.o libgcc/./_ashldi3_s.o libgcc/./_ashrdi3_s.o libgcc/./_cmpdi2_s.o libgcc/./_ucmpdi2_s.o libgcc/./_clear_cache_s.o libgcc/./_enable_execute_stack_s.o libgcc/./_trampol...
2009 Sep 18
4
[LLVMdev] OT: intel darwin losing primary target status
On Fri, Sep 18, 2009 at 10:28:15AM -0700, Nick Kledzik wrote:
> So, when these test cases are run, is the binary linked against /usr/
> lib/libgcc_s.10.5.dylib? or against some just built libgcc_s.10.5.dylib?
> or against some just build libgcc_s.dylib? If either of the latter, then
> if you changed the FSF build of libgcc_s for darwin to have the right
> magic symbols, then when targeting 10.6, the linker will ignore those
> d...
2011 Oct 03
4
[LLVMdev] ld crashes with invalid pointer on Ubuntu 11.04 x86 when linking libgcc_s.so
...m
/home/mike/LLVM/r140981/i686-pc-linux-gnu/sys-include -O2 -O2 -g -O2
-DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes
-Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC
-g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -shared
-nodefaultlibs -Wl,--soname=libgcc_s.so.1
-Wl,--version-script=libgcc/./libgcc.map -o ./libgcc_s.so.1.tmp
libgcc/./_muldi3_s.o libgcc/./_negdi2_s.o libgcc/./_lshrdi3_s.o
libgcc/./_ashldi3_s.o libgcc/./_ashrdi3_s.o libgcc/./_cmpdi2_s.o
libgcc/./_ucmpdi2_s.o libgcc/./_clear_cache_s.o
libgcc/./_enable_execute_stack_s.o libgcc/./_trampoli...
2009 Aug 31
0
Xenclient build error for crti.o
...staging_dir/usr/i686-linux-uclib
c/sys-include -O2 -g -Os -DIN_GCC -DCROSS_COMPILE -W -Wall
-Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes
-Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT
-DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -shared -nodefaultlibs
-Wl,--soname=libgcc_s.so.1 -Wl,--version-script=libgcc/./libgcc.map -o
./libgcc_s.so.1.tmp libgcc/./_muldi3_s.o libgcc/./_negdi2_s.o
libgcc/./_lshrdi3_s.o libgcc/./_ashldi3_s.o libgcc/./_ashrdi3_s.o
libgcc/./_cmpdi2_s.o libgcc/./_ucmpdi2_s.o libgcc/./_clear_cache_s.o
libgcc/./_enable_execute_stack_s.o libgcc/./_trampol...
2008 Feb 16
3
[LLVMdev] amd64, FreeBSD and shared libraries
Hello,
I am trying to build llvm-gcc 4.2 w/ llvm 2.2 on FreeBSD/amd64 and have
found that it doesn't seem to want to build shared libraries. I've found
numerous notes that I should try --disable-shared, because the linker
ends up erroring out with a linker error when building libgcc_s.so.
Subsequently, the same error is produced when it attempts to build
libstdc++.so. If you do happen to build and install it, any attempt to
link a shared library results in this very same behavior. The
crtbeginS.o object seems to contain the offending relocation data which
ld doesn't like.
T...
2011 Oct 03
0
[LLVMdev] ld crashes with invalid pointer on Ubuntu 11.04 x86 when linking libgcc_s.so
On Oct 3, 2011, at 2:33 AM, Don Quixote de la Mancha wrote:
> /lib/i386-linux-gnu/libgcc_s.so.1
> bfae3000-bfb07000 rw-p 00000000 00:00 0 [stack]
> collect2: ld terminated with signal 6 [Aborted]
> make[4]: *** [libgcc_s.so] Error 1
>
Signal 6 is SIGABRT so you may want to find out what's calling abort inside ld. An abort usually means that the linker has gotte...
2011 May 09
2
[LLVMdev] building llvm-gcc on Ubuntu 11.04 Natty Narwhal
...ome/jay/llvm/local/x86_64-unknown-linux-gnu/sys-include -O2 -O2 -g
-O2 -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes
-Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC
-g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -shared
-nodefaultlibs -Wl,--soname=libgcc_s.so.1
-Wl,--version-script=libgcc/./libgcc.map -o ./libgcc_s.so.1.tmp
libgcc/./_muldi3_s.o libgcc/./_negdi2_s.o libgcc/./_lshrdi3_s.o
libgcc/./_ashldi3_s.o libgcc/./_ashrdi3_s.o libgcc/./_cmpdi2_s.o
libgcc/./_ucmpdi2_s.o libgcc/./_clear_cache_s.o
libgcc/./_enable_execute_stack_s.o libgcc/./_trampoli...
2009 Sep 18
0
[LLVMdev] OT: intel darwin losing primary target status
This may be that the libgcc_s.dylib based unwinder is incompatible
with the darwin unwinder. You cannot mix and match the two. One of
the lines from the bugzilla comments shows:
/sw/lib/gcc4.5/lib/libgcc_s.1.dylib (compatibility version 1.0.0,
being used. That will not work. All of the libgcc_s.dylib
functionality ha...
2009 Sep 18
2
[LLVMdev] OT: intel darwin losing primary target status
I realize this is off-topic for the list, but I thought
all the darwin developers here might want to be aware of
this. The current regressions in gcc trunk regarding
exception handling has been escalated to a P1 in order to
attract darwin developers to the issue...
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41260#c31
If these regressions aren't fixed before gcc 4.5's release,
it appears
2014 Mar 01
1
running postlogin script result in libgcc_s.so.1 must be installed for pthread_cancel to work
...stlogin script with:
service pop3 {
executable = pop3 postlogin
}
service postlogin {
executable = script-login /etc/dovecot/popafter.sh
user = $default_internal_user
unix_listener postlogin {
}
}
In my popafter.sh I call a php script, and that result in:
dovecot: postlogin: Error: libgcc_s.so.1 must be installed for
pthread_cancel to work
dovecot: postlogin: Error: Aborted (core dumped)
I have tried google it, but cannot find a solution there works for me,
anybody who can help me?
mail dovecot $ sudo dovecot -n
# 2.0.19: /etc/dovecot/dovecot.conf
# OS: Linux 3.2.0-59-generic x86...
2009 Sep 18
0
[LLVMdev] OT: intel darwin losing primary target status
On Sep 18, 2009, at 10:43 AM, Jack Howarth wrote:
> On Fri, Sep 18, 2009 at 10:28:15AM -0700, Nick Kledzik wrote:
>> So, when these test cases are run, is the binary linked against /usr/
>> lib/libgcc_s.10.5.dylib? or against some just built libgcc_s.
>> 10.5.dylib?
>> or against some just build libgcc_s.dylib? If either of the
>> latter, then
>> if you changed the FSF build of libgcc_s for darwin to have the right
>> magic symbols, then when targeting 10.6, the l...
2011 Jun 27
1
multiple cluster doesn't work
...p 00010000 08:01 131365
/sbin/o2cb_ctl
00611000-00612000 rw-p 00011000 08:01 131365
/sbin/o2cb_ctl
01178000-01199000 rw-p 00000000 00:00 0
[heap]
7fab2c000000-7fab2c021000 rw-p 00000000 00:00 0
7fab2c021000-7fab30000000 ---p 00000000 00:00 0
7fab33848000-7fab3385d000 r-xp 00000000 08:01 917566
/lib/libgcc_s.so.1
7fab3385d000-7fab33a5c000 ---p 00015000 08:01 917566
/lib/libgcc_s.so.1
7fab33a5c000-7fab33a5d000 r--p 00014000 08:01 917566
/lib/libgcc_s.so.1
7fab33a5d000-7fab33a5e000 rw-p 00015000 08:01 917566
/lib/libgcc_s.so.1
7fab33a5e000-7fab33a76000 r-xp 00000000 08:01 921986
/lib/libpthread-2.12.1.so...
2011 Feb 20
3
[LLVMdev] Build problems with llvm-gcc
...isystem
/usr/local/x86_64-unknown-linux-gnu/sys-include -O2 -O2 -g -O2 -DIN_GCC
-W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes
-Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT
-DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -shared -nodefaultlibs
-Wl,--soname=libgcc_s.so.1 -Wl,--version-script=libgcc/./libgcc.map -o
./libgcc_s.so.1.tmp libgcc/./_muldi3_s.o libgcc/./_negdi2_s.o
libgcc/./_lshrdi3_s.o libgcc/./_ashldi3_s.o libgcc/./_ashrdi3_s.o
libgcc/./_cmpdi2_s.o libgcc/./_ucmpdi2_s.o libgcc/./_clear_cache_s.o
libgcc/./_enable_execute_stack_s.o libgcc/./_trampol...
2006 Sep 28
2
[LLVMdev] GCC_4.2.0 problem
Hi,
I have seen the bug
http://llvm.org/bugs/show_bug.cgi?id=896
Maybe it is a non-issue but I had some trouble with this.
I am running Debian sid and were no longer able to compile llvm.
/home/fred/llvm/build/gcc/xgcc: /home/fred/llvm/build/gcc/libgcc_s.so.1:
version `GCC_4.2.0' not found (required by /usr/lib/libstdc++.so.6)
The installed version have this symbol.
strings /lib/libgcc_s.so.1 | grep GCC
GCC_3.0
GCC_3.3
GCC_3.3.1
GCC_3.4
GCC_3.4.2
GCC_4.0.0
GCC_4.2.0
It is just the LD_LIBRARY_PATH that brings in the "llvm" libgcc_s....
2019 May 24
2
Possible bug when finding shared libraries during staged installation
...r to
> > reproduce with x13binary)
>
> > In this case the file command returns multiple results for one of the
> > dynamic libraries, so are_shared looks like this:
>
> >> are_shared
> > $`/Users/Kara/projects/forks/x13binary/inst//lib/libgcc_s.1.dylib`
> > [1] TRUE TRUE TRUE
>
> > $`/Users/Kara/projects/forks/x13binary/inst//lib/libgfortran.3.dylib`
> > [1] TRUE
>
> > $`/Users/Kara/projects/forks/x13binary/inst//lib/libquadmath.0.dylib`
> > [1] TRUE
>
> Thank you, Kara.
&...
2007 Jan 16
2
[LLVMdev] OK, how does this work?
...al/i686-pc-linux-gnu/sys-include -O2 -DIN_GCC
-W -Wall -Wwrite-strings -Wstrict-prototypes
-Wmissing-prototypes -Wold-style-definition -isystem ./include
-fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2
-D__GCC_FLOAT_NOT_NEEDED -shared -nodefaultlibs
-Wl,--soname=libgcc_s.so.1
-Wl,--version-script=libgcc/./libgcc.map -o ./libgcc_s.so.1.tmp
libgcc/./_muldi3_s.o libgcc/./_negdi2_s.o libgcc/./_lshrdi3_s.o
libgcc/./_ashldi3_s.o libgcc/./_ashrdi3_s.o libgcc/./_cmpdi2_s.o
libgcc/./_ucmpdi2_s.o libgcc/./_floatdidf_s.o
libgcc/./_float...
2012 Oct 01
2
[LLVMdev] JIT and libgcc_s.so
Hi all,
There are symbols in libgcc (and compiler-rt) that JIT-compiled modules
may need. These are currently linked correctly because lli and friends
are linked against libgcc_s.so (i.e. shared library version of libgcc,
so dlopen/dlsym works).
However if a consumer links statically, dlsym won't find all compiler
required functions (only the ones that were required by the JIT-compiler
itself will be linked).
So the question is, do we want to support users of the MCJI...
2015 Mar 30
3
[LLVMdev] Color diagnostics
...0
>> (0x00007fbda8a56000)
>> libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007fbda8852000)
>> libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007fbda854b000)
>> libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6
>> (0x00007fbda8247000)
>> libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007fbda8031000)
>> libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fbda7c6b000)
>> /lib64/ld-linux-x86-64.so.2 (0x00007fbda8c99000)
>>
>>
>> Built from trunk:
>> [14:11:19] perry at meepo ~/test
>>...