Questions tagged [gcc]

GNU Compiler Collection

The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, Ada, and Go, as well as libraries for these languages (libstdc++, libgcj,...). GCC was originally written as the compiler for the GNU operating system. The GNU system was developed to be 100% free software, free in the sense that it respects the user's freedom.

81 questions
1
vote
2 answers

Should I install GCC 64 bit on a new server?

I am going to rebuild my server and I am wondering whether I should install GCC 32 or 64 bit. I develop in Python and I use some libraries that would benefit from a 64 bit GCC installation but I am not sure if I am going to run into problems with…
drdee
  • 113
  • 3
1
vote
0 answers

Getting a list of all project owners , folder path from GCP

I am trying to get a list of all GCP projects on the domain and the project owners and export it to a CSV, I have written a script which provide me details of projectid, name, projectnumber date and time. But not able to fetch - projectowner,…
vikash
  • 11
  • 1
1
vote
0 answers

Distcc refuses to compile with arm-none-eabi-gcc

I have distcc 3.3.3 (Ubuntu 20.04, kernel 5.4.0, both x86) on both the server and the client. Setup correctly, as far as I can tell, because it works when compiling for the x86 architecture with gcc. Invoking the make command from the client with…
Flu
  • 11
  • 1
0
votes
1 answer

Cant build nginx from source on Redhat

I've done all the installs of dev packages and im trying to build nginx from source. (UAT) root@vstedbm01d# which cc /bin/cc (UAT) root@vstedbm01d# which gcc /bin/gcc When I am in the root of nginx and try to run my configure I get this: (UAT)…
Jimmy
  • 239
  • 3
  • 7
  • 21
0
votes
1 answer

LDD cannot find library on sol11_64 bit

We have been compiling with gcc successfully on Solaris 10. Now we are porting to 64-bit on Solaris 11 (sol11_64). We use a library developed in house called MSP and use -wl,rpath (equivalent to -R... also tried with -R) during compile to specify…
codenaugh
  • 145
  • 6
0
votes
0 answers

Why doesn't gcc compile for Python packages inside virtualenv?

I am trying to compile a Python script into an executable that relies upon packages only installed inside a virtualenv: sudo su source /home/me/venv/bin/activate # Activates virtualenv cython --embed -o defer4.c defer4.py gcc -Os -I…
sscirrus
  • 103
  • 4
0
votes
3 answers

How to install old versions of gcc on Fedora 12?

I have recently joined a research project at my university. Naturally, the code was written 2 years ago, and the PhD students who originally wrote the code haven't upgraded their machines since Fedora 8. This means that the libraries that they're…
rascher
  • 1,056
  • 3
  • 13
  • 14
0
votes
2 answers

IP2Location PECL Extension won't install on Mac can't link to bundle only dylib

I've been trying for the past 2 days to install IP2Location on my Mac. I've managed to install IP2Location C Library, now PECL extesion is causing issues. I've ran phpize and then 'sudo ./configure' and I get the following error: checking for…
David
  • 829
  • 3
  • 13
  • 30
0
votes
0 answers

Tensorflow on Centos 6.6 requires GLIBCXX v 3.4.19+ of libstdc++.so.6

Trying to get Tensorflow onto a Centos 6 Cloudera system which is airgapped (offline). I've gotten just about all the dependencies working with rpm and offline packages. However, I am still snarled on the version of libstdc++.so.6.…
DeusXMachina
  • 183
  • 1
  • 1
  • 8
0
votes
1 answer

Broadcom's NetXtreme II 5709 on Ubuntu 16.10 4.10 kernel fails w/ code model kernel does not support PIC mode

Is there a way to work with the patch suggested here to get this to work? I downloaded the latest drivers from QLogic (who bought Broadcomm). Their support reply was: As of April 13, 2015 we must refer all requests for downloads back to the…
RobbieTheK
  • 390
  • 5
  • 15
0
votes
1 answer

Compiling GnuPG links gpg2 to /lib instead of /usr/local/lib/

Occasionally I have to install new packages on servers. If I'm lucky, I can find an RPM, otherwise, I get to bang my head on the wall and attempt to compile a package. This time I get to compile GnuPG to get version 2.1.15. So I download all the…
Bob Smith
  • 15
  • 3
0
votes
1 answer

util_pcre.c:104: undefined reference to `pcre_free' while compiling Apache HTTPD 2.4.17. collect2: error: ld returned 1 exit status

On a new EC2, I am facing one type of problem while compiling httpd. It seems like code of Apache cannot find functions / function definitions from libraries. Steps I took on a fresh RHEL to install httpd. sudo yum install gcc extracted…
Krishna Gupta
  • 121
  • 1
  • 4
0
votes
2 answers

Compile node-5.1.0 in CentOS 6.7 lacks of g++ 4.8+

I'm trying to compile node-5.1.0 in CentOS 6.7 but is asking for g++ 4.8 or above. [root@ws node-v5.1.0]# ./configure WARNING: C++ compiler too old, need g++ 4.8 or clang++ 3.4 (CXX=g++) ... First I've installed "Development Tools": [root@ws…
ReynierPM
  • 700
  • 5
  • 14
  • 28
0
votes
0 answers

build memcached source on centos6.4 64bit fails

I'd like to build memcached from source on centos 6.4 x86_64 but only get following error. checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking target system type...…
Chuck
  • 131
  • 3
0
votes
1 answer

Compile Node with GCC v4.9.2

I can't seem to be able to compile Node.js on CentOS 6.6 (64 bits) GCC v4.9.2 $ ./configure Node.js configure error: No acceptable C compiler found! Please make sure you have a C compiler installed on your system and/or consider…
Mick
  • 203
  • 2
  • 7