2

我对 C 和编程很陌生,所以我希望你们有一点耐心。但是,我尝试尽可能准确地描述我的问题。我在我的 Windows 7 计算机上使用 mingw32,我刚刚了解了“make”。我已经编写了一些源代码文件和一个 Makefile。我想要的是,Makefile 编译我的源代码 int 目标代码,然后将其链接到一个可执行文件(我想这对专业人士来说并不疯狂)。

所以这是我的代码:

首先.c:

#include<stdio.h>
#include"second.h"
int main()
{
float x = 12.0;
printf("Result is: %.2f\n",go_to_the_other(x));
return 0;
}

第二个.h

float go_to_the_other(float f);

第二个.c

float go_to_the_other(float f)
{
float calc = f + 10;
return calc;
}

Makefile 是(是的,我只使用了标签):

second.o: second.c second.h
        gcc   -c   second.c
first.o:    first.c
        gcc   -c   first.c
first:   first.o  second.o
        gcc first.o second.o  -o first

这只是一个简单的例子,但它几乎描述了我的问题。我将所有文件都放在同一个目录中,我使用命令行:

mingw32-make first

但我没有编译我的文件,而是只收到消息:

cc  first.c -o first
process_begin: CreateProcess(NULL, cc first.c -o first, ...) failed
make (e=2): The system cannot find the file specified.
<builtin>: recipe for target 'first' failed
mingw32-make: ***[first] Error 2

我想这可能是非常愚蠢的事情,但我就是不知道我做错了什么。我真的很感激这方面的任何帮助。非常感谢你。

4

1 回答 1

1

所以我去尝试了它......它适用于我在Win7机器上使用MinGW-4.7.1......我想知道是否让它拾取环境变量或类似的东西。

尝试验证 make 和 gcc 的版本是您所期望的

mingw32-make -v gcc -v mingw32-gcc -v

也试试这个makefile,看看会发生什么。

CC = mingw32-gcc

second.o: second.c second.h
    $(CC)   -c   second.c
first.o:    first.c
    $(CC)   -c   first.c
first:   first.o  second.o
    $(CC) first.o second.o  -o first

注意将空格转换为制表符!

并通过编译

mingw32-make SHELL=cmd.exe 先

走着瞧吧。

于 2013-09-17T01:29:55.247 回答