当我运行以下代码时,我得到
collect2: fatal error: cannot find 'ld'
compilation terminated.
作为输出。我的GCC版本是gcc (Ubuntu 7.3.0-27ubuntu1~18.04) 7.3.0
。似乎无法找到ld
模块。我不知道该怎么做。
#define _GNU_SOURCE
#include<unistd.h>
#include<stdio.h>
#include<sys/types.h>
#include<sys/stat.h>
#include<fcntl.h>
int main(){
char *stderr = "/home/vs/Desktop/test/output.txt";
char *args[] = {"/usr/bin/gcc",
"-Wall",
"-O2",
"-std=gnu11",
"-fomit-frame-pointer",
"/home/vs/Desktop/test/Solution.c",
"-o",
"/home/vs/Desktop/test/Solution",
"-lm",
NULL};
char *env[] = {"LANG=en_US.UTF-8", "LANGUAGE=en_US:en", "LC_ALL=en_US.UTF-8", NULL};
int fd;
if(0 > (fd = open(stderr, O_WRONLY|O_TRUNC))) perror("open");
if(0 > dup2(fd, 2)) perror("dup");
if(fd != 2) close(fd);
int x = execve("/usr/bin/gcc", args, env);
printf("%d\n", x);
return 0;
}
答案 0 :(得分:2)
由于通过shell发出相同的编译命令时有效,但是如图所示以编程方式发出时失败,因此问题很可能与您提供给execve()
的环境有关。特别要注意的是,提供给该函数的环境数组代表命令的整个环境,而不仅仅是多余的条目。
在这方面特别相关的是,所提供的环境不包含PATH
变量。因此,执行过程将需要使用完整路径来指向要依次启动的任何命令,例如ld
。如果不这样做,则会发生您报告的错误。将PATH
添加到指定的环境应该可以解决该问题。您可以从程序自己的环境中复制该文件,或者更容易地插入默认路径。例如,
// ...
char *env[] = {
"PATH=/usr/local/bin:/usr/bin:/bin", // <--- this
"LANG=en_US.UTF-8",
"LANGUAGE=en_US:en",
"LC_ALL=en_US.UTF-8",
NULL
};
// ...