Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I compile C/C++ program with popen in php... I got this error:

g++: error trying to exec 'cc1plus': execvp: No such file or directory

but if I run php code in shell.. it works fine..

in Arch Linux..

PHP Code:

<?php
    function rfile($fp) {
    $out="";
       while (!feof($fp)) {
           $out.= fgets($fp, 1024000);
       }
       return $out;
    }
    $p = popen('g++ -Wall -g aplusb.cc -o aplusb 2>&1', 'r');
    $result = rfile($p);
    pclose($p);
    echo $result;
?>

thanks

share|improve this question
2  
Have you tried to print env variables and compare them? Do you have safe mode on or off? – Vyktor Jan 16 '12 at 10:34
yes.. I compared the env variables between php and shell ... but it dont have any help... and my safe mode is Off.. – fanzeyi Jan 16 '12 at 10:38
Are you using the same user or executing script from web server? Add "-v" (should be verbose output), maybe there'll be an answer. – Vyktor Jan 16 '12 at 10:43
ok.. i just tested to compile C++ code and run php xx.php as http user. all of them is success... and the output of g++ -v in php code is similar with its in shell.. – fanzeyi Jan 16 '12 at 11:02
1  
gcc -print-search-dirs how about this? Are the outputs the same? – Vyktor Jan 16 '12 at 11:10
show 2 more comments

3 Answers

Each compiler has its own libexec/ directory. Normally libexec directory contains small helper programs called by other programs. In this case, gcc is looking for its own 'cc1' compiler. Your machine may contains different versions of gcc, and each version should have its own 'cc1'. Normally these compilers are located on:


/usr/local/libexec/gcc/<architecture>/<compiler>/<compiler_version>/cc1

Similar path for g++. Above error means, that the current gcc version used is not able to find its own 'cc1' compiler. This normally points to a PATH issue.

share|improve this answer
I had the same issue with my PATH environment when I ran strace g++ [args] I discovered it was trying the wrong folder in the path then giving up. – sirbrialliance Jun 16 '12 at 3:27

This might be due to the fact that the php user might have not the same rights as the normal user on the shell.

You can try this out by logging in as the php user on the shell and executing the command.

share|improve this answer
ok. i just use su http.. I can compile the c++ code in shell with g++ .. – fanzeyi Jan 16 '12 at 10:43

I had the exact same problem launching gcc as a child process from a c program using fork + execvp. From the terminal I could successfully compile using same command and both the path and -print-search-dirs seemed to agree between the two scenarios.

After some unsuccessful debugging, I finally reverted to launching gcc using int system(const char* command) and suddenly everything worked again (it would be strange otherwise). I never really found out exactly why the former didn't work, so I would be very interested if you find the answer.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.