0
votes
0answers
49 views

No acceptable C compiler found in $PATH [closed]

Using CentOS VPS, installed GCC as well as development tools, error still comes up. Path is set to (i'm assuming by default) /usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin ...
0
votes
0answers
48 views

centos library issue

I am getting the following error when I install a module built in 'c' language in Cent os with 64 bit version. It does perfectly install on fedora operating system with 32 bit system. When I try to ...
3
votes
2answers
197 views

pam_appl.h and pam_misc.h missing, in rshd.c source code

I am working on a centOS 5.5 OS. It shows error that /security/pam_appl.h and /security/misc.h file is missing. Actually my rshd.c does not loads PAM module, may be by putting this libraries, it ...
0
votes
1answer
137 views

Why simple code construced from pulse audio API doesn't run?

I have used the simple C code of pulse audio for playback and record and it worked fine. But when I converted it to C++ it doesn't work. I am pasting both the codes. Please help. The C++ code doesn't ...
0
votes
1answer
83 views

PulseAudio recording and playback fails

I am trying to record and playback audio data using pulse audio API in centOS 6.2. But it records and playbacks nothing. I am using a code from pulseaudio. I need help to get it working in my PC. What ...
0
votes
0answers
78 views

How to include pulse audio library linker in eclipse in CentOS 6.2

I am trying to execute a C file in Cent OS 6.2. But it is causing "Undefined reference to "pa_sample_free"" and other errors in case of accessing pulse audio library. My code is given in the below ...
1
vote
3answers
214 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
85 views

reading type,address,size of variables from symbol table. Which is built using gnu tools (like gmake or gcc)

We are trying to implement the customized gdb tool for specific environment. We have Linux- Centos operating systems. Trying to implement the gdb functionality with some customization. Our tool will ...
1
vote
2answers
595 views

glibc differences between CentOS versions

CentOS seems to bundle a new version of glibc library RPM with every release. 6.0 has glibc-2.12-1.7.el6.x86_64.rpm 6.1 has glibc-2.12-1.25.el6.x86_64.rpm 6.2 has glibc-2.12-1.47.el6.x86_64.rpm 6.3 ...
0
votes
1answer
60 views

Why gcc complains a library can't be found while it's already there?

The messages are below: $:~/software/version_1.02/example$ gcc -Wall -Wextra example.c -I../include -L../lib -lnnmf -larpack -llapack \ -lblas -o main In file included from example.c:47: ...
0
votes
2answers
90 views

Sprintf error to send email via c on centos 6.2

We are trying to send several emails via C language on a centos 6.2 platform. Below are the codes. The error is warning: incompatible implicit declaration of built-in function sprintf. How to solve ...
0
votes
2answers
84 views

Netbeans EXE not working when executed from Terminal - CentOs

I made Netbeans work environment with SASL. The sample codes get build and it also run properly from Netbeans. But when I try to run my exe from Terminal it is not working. The error says as below: ...
0
votes
1answer
729 views

Can't find Python.h file on CentOS

I am trying to compile a Python extension written in C on a CentOS machine. I am getting error: Python.h: No such file or directory It works fine on ubuntu, where I have python-dev installed using ...
0
votes
1answer
579 views

How to develop netfilter queue in CentOS 6?

I can't find a package that would provide "libnetfilter_queue/libnetfilter_queue.h" for CentOS 6.3. (The header file that would provide struct nfq_data, struct nfq_q_handle...) Not even in the EPEL. ...
0
votes
2answers
315 views

How to find the value of kernel.shmmax from C code

I want to get the value of kernel.shmmax in C code (which I query on centos5.0, centos6.0 and ubuntu10.04 using the shell command "$ sysctl -q kernel.shmmax"). I used the following code to find it: ...
0
votes
2answers
671 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 ...
1
vote
1answer
2k views

How to install glibc with debugging info on CentOS 5.5

I am working through Zed Shaw's Learn C the Hard Way. In the chapter on Valgrind, the section "What you should see" has line numbers for various glibc functions. I've determined that (obviously) my ...
1
vote
1answer
75 views

Logging application or library for RHEL 5 [closed]

I'm searching for a good logging application or library to be used/called from a C code in a machine with RHEL 5.4 installed. I have also tried some options: syslog: I can't use it because the ...
1
vote
3answers
128 views

pthread_exit() with address of local variable sometimes works?

I used to get a trouble with pthread_exit(). I know there is no way to use pthread_exit() in a way like pthread_exit(&some_local_variable); We always need to use pthread_exit() like: ...
2
votes
3answers
292 views

Running a program compiled from clang+llvm on another machine

I am compiling a program through clang+llvm (version 3.1) and trying to run it on a computer which also has the same clang+llvm version. I'm compiling on Ubuntu 10, but the other computer where I'm ...
0
votes
1answer
107 views

String to predefined macro

In my project, I have a string like this char version [] = "__DATE__ __TIME__"; I need to take that and print out the date and time from the another c file. I can parse the string by using strtok; ...
1
vote
1answer
84 views

Weird warning when reading line in C

I read the man page of the readline function in CentOs: readline returns the text of the line read. A blank line returns the empty string. If EOF is encountered while reading a ...
1
vote
1answer
3k views

I got error in run time that “Cannot assign requested address” in C under Linux (Centos)

When I assign this address , it says cannot assign requested address. But when I put local address (127.0.0.1) it accepts it. Why??? char* hostname = "192.168.1.8"; int sockfd; struct ...
1
vote
2answers
109 views

Why is this C program reporting more throughput than nload?

I run the following C program between two machines with 10GibE; the program reports 12Gib/s whereas nload reports a (more believable) 9.2Gib/s. Can anyone tell me what I'm doing wrong in the program? ...
1
vote
1answer
218 views

How to prepare ./configure make make install for my C file when it has other dependencies?

Writing/reading code seems less stress then preparing a deploy scripts such as ./configure then make and make install for my C application's. How can i make a ./configure file and make files for this ...
1
vote
4answers
264 views

C++ application collapsing after some hours

i have an application written in C++ that uses opencv 2.0, curl and a opensurf library. First a PHP script (cron.php) calls proc_open and calls the C++ application (called icomparer). When it finishes ...
2
votes
1answer
273 views

strace output question

I run a program on both CentOS and Debian. The output is exactly the same but in Centos I get the 3 lines in bold while in Debian I do not. What are those 3 lines about and how can I get them in ...
2
votes
5answers
4k views

Writing PID File on Linux

I am currently working on a linux daemon that needs to be single instance (i.e restricted to 1 user 1 process). What would be the best way of doing so without having to use getpid() to manually write ...
1
vote
2answers
878 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
139 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
2answers
118 views

Best practice for securing sensitive data in plain text file?

Currently I am working on a C linux daemon that takes user input for an SQL connection string, then stores the information into a local conf file (client side). The purpose of the daemon is to submit ...
0
votes
2answers
1k views

Python - Using os.popen() to parse Unix “ls” - Problems with Killing Child Process

From my understanding, os.popen() opens a pipe within Python and initiates a new sub process. I have a problem when I run a for loop in conjunction with os.popen(). I can't seem to CTRL+C out of the ...
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 ...
7
votes
5answers
4k views

PECL install fails

I have browsed every Google result, read all the forum posts about this error, but I cannot solve it. When using PECL install for anything, I always end up getting this error: checking whether the C ...