search for: _nonshared

Displaying 6 results from an estimated 6 matches for "_nonshared".

2020 Jan 03
2
gcc 8/9 on CentOS 7
...CentOS SCL repository. This is mentioned 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?...
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
...s mentioned 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 > option...
2016 May 20
2
devtoolset-4
..._s.so.1 (0x00000039d8000000) libc.so.6 => /lib64/libc.so.6 (0x00000039ce000000) /lib64/ld-linux-x86-64.so.2 (0x00000039cdc00000) Which is stock libstdc++ Devtoolset version is located at: /opt/rh/devtoolset-4/root/usr/lib/gcc/x86_64-redhat-linux/5.2.1/libstdc++.so Additionally there is libstdc++_nonshared.a: /opt/rh/devtoolset-4/root/usr/lib/gcc/x86_64-redhat-linux/5.2.1/libstdc++_nonshared.a In the guide there is a matrix of compatibility: https://access.redhat.com/documentation/en-US/Red_Hat_Developer_Toolset/4/html/User_Guide/sect-Red_Hat_Developer_Toolset-Compatibility.html it says that If I co...
2016 May 19
2
devtoolset-4
Hello, my name is Jarek I am new here. I need some clarifications on how to distribute an app developed with devtoolset-4 enabled. I am developing a distributed app in c++ I wanted to upgrade toolchain to use new standard. Is it true that when I compile on centos 6.x with devtoolset enabled then I will be able to run this app on centos 7.x as well? Do I have to install devtoolset on all my
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>