search for: lstdc

Displaying 5 results from an estimated 5 matches for "lstdc".

2020 Jan 03
2
gcc 8/9 on CentOS 7
...entioned here <https://bugzilla.redhat.com/show_bug.cgi?id=1642077> as well. g++ -m32 helloworld.cpp /opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld: skipping incompatible /opt/rh/devtoolset-8/root/usr/lib/gcc/x86_64-redhat-linux/8/libstdc++_nonshared.a when searching for -lstdc++_nonshared /opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld: cannot find -lstdc++_nonshared collect2: error: ld returned 1 exit status Are there any plans to add the missing i686 package? Otherwise, what other options does one have to get to gcc 8/9? Further, where can I find t...
2019 Dec 28
2
gcc 8/9 on CentOS 7
I am looking to make use of gcc 8/9 on CentOS 7, which is currently with gcc 4.8.5. How do I go about doing this? SCL repository provides the same as part of devtoolset8, but devtoolset8 libstdc++-devel i686 package is missing, without which I can not build 32 bit applications. Are there any repository sources from where I can get this? Otherwise, I am open to building the packages from sources.
2020 Jan 06
0
gcc 8/9 on CentOS 7
...illa.redhat.com/show_bug.cgi?id=1642077> as well. > > g++ -m32 helloworld.cpp > /opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld: > skipping incompatible > /opt/rh/devtoolset-8/root/usr/lib/gcc/x86_64-redhat-linux/8/libstdc++_nonshared.a > when searching for -lstdc++_nonshared > /opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld: cannot > find -lstdc++_nonshared > collect2: error: ld returned 1 exit status > > Are there any plans to add the missing i686 package? Otherwise, what other > options does one have to get to gcc 8/9...
2012 Nov 23
7
buildworld with clang breaks because no cc
...LEASE #2 r242867. In /etc/src.conf I have "WITHOUT_GCC= yes". Compile progresses up to below then breaks: ===> usr.bin/xlint/xlint (all) ===> usr.bin/xlint/llib (all) lint -cghapbx -Cposix /asp/src/usr.bin/xlint/llib/llib-lposix lint -cghapbx -Cstdc /asp/src/usr.bin/xlint/llib/llib-lstdc ===> lib/clang/libllvmx86codegen (all) llib-lposix: llib-lstdc: lint: cannot exec /usr/obj/asp/src/tmp/usr/bin/cc: No such file or directory *** [llib-lstdc.ln] Error code 1 lint: cannot exec /usr/obj/asp/src/tmp/usr/bin/cc: No such file or directory *** [llib-lposix.ln] Error code 1 2 errors **...
2019 Aug 27
4
Orc JIT vs. STL
Greetings, LLVM wizards. We are using Clang and Orc JIT (v1) to compile and execute C++ code on the fly. If a C++ module calls functions from external libraries, we add them via DynamicLibrary::LoadLibraryPermanently(). The problem we have run into recently is when a module calls a function from the STL -- in particular this swap() function for input streams: #include <fstream>