search for: libcloog

Displaying 20 results from an estimated 23 matches for "libcloog".

Did you mean: libclang
2012 Oct 23
2
[LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
...;> >> means the initializer called something which made its way into the cc1 binary, probably it called some weak symbol which resolved in the main executable cc1. > > this reminds me of something that came up recently (PR13981): both polly and > gcc are dynamically linked against libcloog (and usually against different > versions). When dlopen loads polly it resolves the libcloog symbols using > the version of libcloog that was loaded when gcc (the main binary) was started > up, causing all kinds of mayhem on linux. Maybe this could cause the kind of > issue you are se...
2012 Oct 23
0
[LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
....5.0) > /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 169.3.0) > /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 56.0.0) ... > However I have managed to shift the error with the following linkage... > > LLVMPolly.so: > /sw/lib/libcloog-isl.3.dylib (compatibility version 4.0.0, current version 4.0.0) > /sw/lib/libisl.10.dylib (compatibility version 11.0.0, current version 11.0.0) > /sw/lib/gmp5/libgmpxx.4.dylib (compatibility version 7.0.0, current version 7.5.0) > /sw/lib/gmp5/libgmp.10.dylib (compatibility version 11...
2012 Oct 23
0
[LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
...in12.2.0/4.7.2/cc1 > > means the initializer called something which made its way into the cc1 binary, probably it called some weak symbol which resolved in the main executable cc1. this reminds me of something that came up recently (PR13981): both polly and gcc are dynamically linked against libcloog (and usually against different versions). When dlopen loads polly it resolves the libcloog symbols using the version of libcloog that was loaded when gcc (the main binary) was started up, causing all kinds of mayhem on linux. Maybe this could cause the kind of issue you are seeing, especially if...
2012 Oct 22
0
[LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
..._dyld_dyld_fatal_error () The linkage is... % otool -L /sw/opt/llvm-3.2/lib/LLVMPolly.so /sw/opt/llvm-3.2/lib/LLVMPolly.so: /sw/lib/libisl.10.dylib (compatibility version 11.0.0, current version 11.0.0) /sw/lib/gmp5/libgmp.10.dylib (compatibility version 11.0.0, current version 11.5.0) /sw/lib/libcloog-isl.3.dylib (compatibility version 4.0.0, current version 4.0.0) /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 169.3.0) /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 56.0.0) and done with... /sw/var/lib/fink/path-prefix-clang/c++ -fPIC -fv...
2012 Oct 22
5
[LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
Jack, I looks like the code is calling dlopen() on LLVMPolly.so and it or something it links against has an initializer. The initialer is run before dlopen() returns and the crash is in the initializer. The message: dyld: fast lazy bind offset out of range (53437, max=7640) in image /sw/lib/gcc4.7/libexec/gcc/x86_64-apple-darwin12.2.0/4.7.2/cc1 means the initializer called something which
2016 May 02
2
Ubuntu 14 Warning
This morning, 2 of us noticed that running contrib/scripts/install_prereq on a fresh Ubuntu 14 system actually removed critical packages like network-manager, openssh-server, perl, git, and a bunch of others. It appears that the culprit is the libsnmp-dev package. It's default conflict resolution solution is to uninstall conflicting packages and the alternate solution is to correctly upgrade
2012 Oct 23
1
[LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
...ccur before the initializer function is called. Was this behavior expected? Also, as I noted on http://llvm.org/bugs/show_bug.cgi?id=14140#c13, a static build of LLVMPolly.so on 10.6 exhibits the same dyld error. Am I correct to assume that test proves that the offending symbol can't be from libcloog-isl, libisl, libgmp or libstdc++ because, when statically linked, those symbols can't be obtained from cc1? Is it vaild to assume that the offending symbol has to be both in the binding list seen when LLVMPolly.so loads and the symbols (defined or undefined) in cc1? Any suggestions on how to pr...
2012 Oct 22
5
[LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
On Oct 22, 2012, at 11:34 AM, Jack Howarth wrote: > Nick, > I have uploaded the full walk with 'set env DYLD_PRINT_INITIALIZERS'. It didn't seem very informative > as the dyld error occurs right after... > > (gdb) > llvm::sys::DynamicLibrary::getPermanentLibrary (filename=0x142903da8 "/sw/opt/llvm-3.2/lib/LLVMPolly.so", errMsg=0x7fff5fbfe6e0) at
2012 Oct 23
0
[LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
...e initializer function is called. Was this behavior > expected? > Also, as I noted on http://llvm.org/bugs/show_bug.cgi?id=14140#c13, a static build of LLVMPolly.so on 10.6 exhibits the > same dyld error. Am I correct to assume that test proves that the offending symbol can't be from libcloog-isl, libisl, > libgmp or libstdc++ because, when statically linked, those symbols can't be obtained from cc1? Is it vaild to assume that the > offending symbol has to be both in the binding list seen when LLVMPolly.so loads and the symbols (defined or undefined) > in cc1? Any suggestio...
2013 Oct 20
0
[LLVMdev] Some news about apt, QA, Coverity, etc
...ow also available on http://llvm.org/apt * All distributions have new packages: - lldb-3.4-dev - contains the LLDB headers to build software on top of this - python-clang-3.4 - provides the python / clang bindings * polly is built again but, for now, only for Debian unstable (I have to backport libcloog-isl-dev & libisl-dev to the other distros) * That means that the code coverage ( http://buildd-clang.debian.net/coverage/ ) and scan-build ( http://buildd-clang.debian.net/scan-build/ ) also provide the polly reports. * I am running Coverity on LLVM+Clang+LLDB+polly (compiler-rt is not checke...
2013 Nov 19
2
[LLVMdev] proposed patch to default to isl-only polly
...make does Polly build against cloog as well. % otool -L /sw/opt/llvm-3.4/lib/LLVMPolly.so /sw/opt/llvm-3.4/lib/LLVMPolly.so: /sw/lib/libisl.10.dylib (compatibility version 13.0.0, current version 13.1.0) /sw/lib/gmp5/libgmp.10.dylib (compatibility version 12.0.0, current version 12.3.0) /sw/lib/libcloog-isl.4.dylib (compatibility version 5.0.0, current version 5.0.0) /sw/lib/ncurses/libncurses.5.dylib (compatibility version 5.0.0, current version 5.0.0) /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 169.3.0) /usr/lib/libz.1.dylib (compatibility version 1.0.0, current v...
2016 Mar 23
2
r-base installation fails on Ubuntu 14.04
...ebian krb5-locales libalgorithm-diff-perl >>> libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan0 libasn1-8-heimdal >>> libasprintf-dev libasprintf0c2 libatomic1 libauthen-sasl-perl libblas-dev >>> libblas3 libbz2-dev libc-dev-bin libc6 libc6-dev libcairo2 libcloog-isl4 >>> libcroco3 libcurl3 libdatrie1 libdpkg-perl libdrm-intel1 libdrm-nouveau2 >>> libdrm-radeon1 libelf1 libencode-locale-perl libfakeroot >>> libfile-basedir-perl libfile-desktopentry-perl libfile-fcntllock-perl >>> libfile-listing-perl libfile-m...
2016 Mar 23
5
r-base installation fails on Ubuntu 14.04
...ff-base intltool intltool-debian krb5-locales libalgorithm-diff-perl > libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan0 libasn1-8-heimdal > libasprintf-dev libasprintf0c2 libatomic1 libauthen-sasl-perl libblas-dev > libblas3 libbz2-dev libc-dev-bin libc6 libc6-dev libcairo2 libcloog-isl4 > libcroco3 libcurl3 libdatrie1 libdpkg-perl libdrm-intel1 libdrm-nouveau2 > libdrm-radeon1 libelf1 libencode-locale-perl libfakeroot > libfile-basedir-perl libfile-desktopentry-perl libfile-fcntllock-perl > libfile-listing-perl libfile-mimeinfo-perl libfont-afm-perl libfon...
2016 Mar 23
3
r-base installation fails on Ubuntu 14.04
...ebian krb5-locales libalgorithm-diff-perl >>> libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan0 libasn1-8-heimdal >>> libasprintf-dev libasprintf0c2 libatomic1 libauthen-sasl-perl libblas-dev >>> libblas3 libbz2-dev libc-dev-bin libc6 libc6-dev libcairo2 libcloog-isl4 >>> libcroco3 libcurl3 libdatrie1 libdpkg-perl libdrm-intel1 libdrm-nouveau2 >>> libdrm-radeon1 libelf1 libencode-locale-perl libfakeroot >>> libfile-basedir-perl libfile-desktopentry-perl libfile-fcntllock-perl >>> libfile-listing-perl libfile-m...
2016 Mar 23
0
r-base installation fails on Ubuntu 14.04
...rtran-4.8 groff-base intltool intltool-debian krb5-locales libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan0 libasn1-8-heimdal libasprintf-dev libasprintf0c2 libatomic1 libauthen-sasl-perl libblas-dev libblas3 libbz2-dev libc-dev-bin libc6 libc6-dev libcairo2 libcloog-isl4 libcroco3 libcurl3 libdatrie1 libdpkg-perl libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libelf1 libencode-locale-perl libfakeroot libfile-basedir-perl libfile-desktopentry-perl libfile-fcntllock-perl libfile-listing-perl libfile-mimeinfo-perl libfont-afm-perl libfontconfig1 libfonten...
2016 Mar 23
0
r-base installation fails on Ubuntu 14.04
...l intltool-debian krb5-locales libalgorithm-diff-perl >> libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan0 libasn1-8-heimdal >> libasprintf-dev libasprintf0c2 libatomic1 libauthen-sasl-perl libblas-dev >> libblas3 libbz2-dev libc-dev-bin libc6 libc6-dev libcairo2 libcloog-isl4 >> libcroco3 libcurl3 libdatrie1 libdpkg-perl libdrm-intel1 libdrm-nouveau2 >> libdrm-radeon1 libelf1 libencode-locale-perl libfakeroot >> libfile-basedir-perl libfile-desktopentry-perl libfile-fcntllock-perl >> libfile-listing-perl libfile-mimeinfo-perl lib...
2016 Mar 23
0
r-base installation fails on Ubuntu 14.04
...les libalgorithm-diff-perl >>>> libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan0 libasn1-8-heimdal >>>> libasprintf-dev libasprintf0c2 libatomic1 libauthen-sasl-perl libblas-dev >>>> libblas3 libbz2-dev libc-dev-bin libc6 libc6-dev libcairo2 libcloog-isl4 >>>> libcroco3 libcurl3 libdatrie1 libdpkg-perl libdrm-intel1 libdrm-nouveau2 >>>> libdrm-radeon1 libelf1 libencode-locale-perl libfakeroot >>>> libfile-basedir-perl libfile-desktopentry-perl libfile-fcntllock-perl >>>> libfile-li...
2016 Mar 23
5
r-base installation fails on Ubuntu 14.04
I am unable to install R on an up to date (i.e. apt upgraded) Ubuntu 14.04 system. According to https://cran.r-project.org/bin/linux/ubuntu/README (and many other sources), R is available for this version of Ubuntu (which is a stable version). I currently have deb https://cran.cnr.berkeley.edu/bin/linux/ubuntu trusty/ in sources.list. I've tried this with and without deb
2012 Jul 11
0
[LLVMdev] Compiling llvm and Clang on Linux
It's undocumented FAQ, if you are using RHEL5 (or clone). - install gcc44-c++ - Build with CC=gcc44 CXX=g++44 - You may need "CC=clang -std=gnu89" to use clang with its glibc. Have fun! ps. AFAIK, clang can be built more easily on centos6. ...Takumi 2012/7/11 Sitvanit Ruah <RUAH at il.ibm.com>: > > Hello all, > I am new to this mailing list so I hope this is
2012 Jul 12
3
[LLVMdev] Compiling llvm and Clang on Linux
.../4.4.6/include/varargs.h /usr/lib/gcc/i386-redhat-linux6E/4.4.6/include/wmmintrin.h /usr/lib/gcc/i386-redhat-linux6E/4.4.6/include/x86intrin.h /usr/lib/gcc/i386-redhat-linux6E/4.4.6/include/xmmintrin.h /usr/lib/gcc/i386-redhat-linux6E/4.4.6/include/xopintrin.h /usr/lib/gcc/i386-redhat-linux6E/4.4.6/libcloog.so.0 /usr/lib/gcc/i386-redhat-linux6E/4.4.6/libgcc.a /usr/lib/gcc/i386-redhat-linux6E/4.4.6/libgcc_eh.a /usr/lib/gcc/i386-redhat-linux6E/4.4.6/libgcc_s.so /usr/lib/gcc/i386-redhat-linux6E/4.4.6/libgcov.a /usr/lib/gcc/i386-redhat-linux6E/4.4.6/libgomp.a /usr/lib/gcc/i386-redhat-linux6E/4.4.6/libgomp...