Tagged Questions
0
votes
1answer
17 views
Make error centos5 missing separator
#begin
# Copyright (c) 2009-2010 Satoshi Nakamoto
# Distributed under the MIT/X11 software license, see the accompanying
# file license.txt or http://www.opensource.org/licenses/mit-license.php.
...
0
votes
0answers
93 views
how to updat gcc in centos 5
I need to update gcc to at least 4.4 for xbt install
when I do
yum install boost-devel gcc-c++ mysql-devel subversion
I get Finished
Setting up Install Process Package ...
0
votes
0answers
73 views
gcc update stop 4.1
I need to update gcc to at least 4.4 for xbt install
when I do
yum install boost-devel gcc-c++ mysql-devel subversion
I get
Finished
Setting up Install Process
Package ...
0
votes
1answer
313 views
CentOS: Using GCC 4.7 from devtoolset results in linking libstdc++ incorrectly (undefined symbols)
I am using the devtoolset-1.0 for CentOS 6.3 in order to upgrade temporarily the GCC version. Although I am now able to compile my C++ application, the final binary is missing some symbols:
$ ldd -d ...
4
votes
2answers
145 views
How to implement timeout for getline()? [duplicate]
I want to read a string from command line through getline() in c++.
For that I want to add a timer of 5 sec. If no string read, then the program will terminate.
How can I do this?
1
vote
1answer
108 views
GCC compilation on Azure using a GUI
As a part of a college project we are implementing Compiler as a Service. For this we are planning to use a Virtual Machine on Azure preferably Ubuntu or CentOS. The problem is we have no leads. How ...
2
votes
3answers
230 views
Tutorial on building whole toolchain on CentOS
I am working on CentOS 6 machines, which has very old GCC/GlibC version. I want to build the whole glibc, binutils, gcc toolchain with latest or at least very recent versions in order to use c++11 ...
-1
votes
1answer
198 views
GCC Compiler - unrecognized option '-R/usr'
I am attempting to install Cosign on CentOS 6.3 64-bit to work with my employer's central login system.
Their documentation states that I need to set an LDFLAGS directive of:
LDFLAGS="-R/usr ...
1
vote
3answers
260 views
how to include lib when compiling C code with gcc command in linux
I want to run my C code located in desktop with the header files located in other location. What should be the appropriate gcc command for compilation and execution? I have attached the code below. I ...
0
votes
1answer
116 views
glibc-2.15 cannot remove `/var/db/Makefile'
When trying to install glibc-2.15 on Centos-5(Kernel version 2.6.18-238.9.1.el5, gcc-4.6.3), make install step fails with the error message cannot remove/var/db/Makefile'`
The configure command is ...
1
vote
0answers
258 views
/usr/lib/libpthread.so: No such file or directory && /usr/lib/libm.so: No such file or directory Solutioned
Solutioned with sudo ln -s /usr/lib64/libm.so /lib and ln -s /usr/lib64/libpthread.so /lib
libm.so is in this directory: /usr/lib64/libm.so
libpthread is in this dir : /usr/lib64/libpthread.so
I ...
5
votes
3answers
277 views
Is it possible to install g++ on CentOS without root?
I've got a core i7 machine wtih CentOS 5.8 that I SSH into and use for running simulations. Unfortunately it only has gcc version 4.1.2. This seems to be producing vastly slower programs than what I ...
1
vote
0answers
277 views
How to build and install gcc with built-in rpath?
I'm trying to build and install my own gcc 4.7.2 in /usr/local to use in place of the gcc 4.4.6 in /usr. (This is on CentOS 6.3.)
gcc makes executables and dynamic libraries that dynamically link to ...
0
votes
2answers
910 views
LD_LIBRARY_PATH doesn't seem to work
I'm trying to compile a test file:
gcc -o test test.c -lg2c
but I get the error:
/usr/bin/ld: cannot find -lg2c/code>
If I use:
gcc -o test test.c -L/usr/lib/gcc/x86_64-redhat-linux/3.4.6 -lg2c
...
1
vote
4answers
3k views
error: command 'gcc' failed with exit status when installing psycopg2
i need to install psycopg2 for openerp installation process, but i always found that error. i've already used pip and easy_install, my gcc is the latest version. Really need your help to solve my ...
2
votes
1answer
2k views
C compiler gcc not found while installing passenger and nginx
I'm trying to install Passenger and Nginx on my VPS.
I followed these instructions and replaced all links of all sources to the current version.
But when i ran the Phusion Passenger installer for ...
3
votes
3answers
3k views
How to build gcc 4.7.2 on CentOS 6 x64
I am trying to build latest (at the moment of writing this) GCC version on CentOS.
I downloaded & built GMP, MPFR and MPC. These libraries are located under /usr/local (i. e. usr/local/lib for ...
0
votes
1answer
480 views
GCC 4.7 RPM SPEC [closed]
I would like to install GCC 4.7 on both CentOS 5 and CentOS 6. The reason is that I work with a production environment comprised of both systems, however the latest compiler available in the yum ...
0
votes
1answer
186 views
Undefined reference error linking shared object
I have shared library which is dependent on a few static libraries which includes zlib etc. When I am building my shared library with the dependent static libraries with g++ (cent os 6.3) it is ...
2
votes
0answers
2k views
32 bit builds on 64 bit CentOS 5 hosts
I am trying to build valgrind (3.7.0) on a 64 bit host (running CentOS 5.8). I need to use valgrind in examining the performance of a 32 bit program (built on a 32 bit host, I need 32 bit because the ...
0
votes
1answer
424 views
CentOS 6 producing an odd linking error
our network recently made the switch to CentOS 6 from CentOS 5. Upon compiling with gcc we find that at linking time we find this error.
/usr/bin/ld: cannot find -lz
collect2: ld returned 1 exit ...
0
votes
2answers
698 views
gcc and glibc versions
I have gcc 4.1.2 installed. I installed a new separate gcc (version 4.4.6) too using yum on CentOS. Now my question is, do these two gcc versions use the same glibc version or glibc is different for ...
4
votes
0answers
900 views
How do I install the latest gcc 4.7.0 on centos 6.2? [closed]
[root@localhost dyliu]# yum list gcc
Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile
* base: centos.mirrors.tds.net
* extras: ...
5
votes
2answers
19k views
Install gcc-c++ on CentOS without yum
Can I install gcc++ on CentOS 6.x without `yum install gcc-c++ ....' ?
Is there any .tar or .rpm package available for download?
0
votes
1answer
209 views
Error compiling imapfilter 2.4.1 in CentOS 5.6
I am trying to compile imapfilter 2.4.1 ( https://github.com/lefcha/imapfilter ) in CentOS 5.6. I believe I've got all the dependencies sorted but when I run make I get:
make[1]: Entering directory ...
0
votes
2answers
769 views
Error compiling the compiler GCC
I know, it's an irony to compile a compiler. But I need a specific version of this compiler, and the CentOS 5.x repositories have not the most recent versions of GCC.
The version what i need is 4.3.2 ...
0
votes
2answers
473 views
Local installation of gcc on CentOS
I would like to know if it is possible to install gcc as a "local installation" on my home directory? Thanks!
I am running CentOS 5.5 and exploring the possibility of installing gcc 4.2.* in my home ...
2
votes
0answers
430 views
uwsgi process died with “libgcc_s.so.1 must be installed for pthread_cancel to work”
uWSGI runs on CentOS 5 with python2.6
Sometimes, the below errors show in uwsgi log:
libgcc_s.so.1 must be installed for pthread_cancel to work DAMN !
process 2474 died :( trying respawn ... ...
1
vote
2answers
903 views
unable to compile brian gladman aes library
I have been compiling brian gladman's library from here www.gladman.me.uk
I am able to compile the lib on my local machine(ubuntu 10.10) but when I try to compile on my remote machine(CentOs 5.4) it ...
2
votes
1answer
140 views
Why is the first arg in stdarg.h a register? [closed]
stdarg.h warns:
Warning: First arg is in a register,
stdarg.h cannot take its address
Why would the first argument will be stored in register?
0
votes
1answer
337 views
Choosing newer gcc version for upgrade
I develop C++ applications on CentOS 5.4 and we came across several inconvenient situations with gcc 4.1.2 like inability to debug local variables in class constructor which is a confirmed gcc bug ...
0
votes
5answers
2k views
sscanf + c99 not working on some platforms?
When I compile a simple Hello World! program that uses the sscanf function on my local Debian lenny x64, it works. But when I upload the same program to the server running CentOS x86, it will not ...
0
votes
1answer
2k views
Problem with glaux.h locating
I try to compile code, that beggins with:
#include<stdlib.h>
#include<GL/gl.h>
#include<glaux.h>
with command:
cc -o test test.c -I/usr/local/include -L/usr/local/lib -lMesaaux ...
6
votes
2answers
6k views
How to cross compile from Mac OS X to Linux x86?
I'm running Mac OS X 10.5.8 and want to compile for target CentOS 5.3 with GCC 4.1.2. How could I:
Compile GCC 4.1.2 toolchain and related tools?
Use that tool to cross compile for target CentOS ...
0
votes
1answer
488 views
Problem with GCC allocated memory on VPS
I am trying to install a python module on my VPS and am running into the following problem once I try to run the install:
virtual memory exhausted: Cannot allocate memory
error: command 'gcc' failed ...

