gpt4 book ai didi

c++ - 在 Windows 7 中通过 GnuWin32 使用 Microsoft Visual C/C++ 编译器编译源 (.C) 文件时出错

转载 作者:太空狗 更新时间:2023-10-29 21:42:35 25 4
gpt4 key购买 nike

我将向您展示以下步骤......

首先下载 GNUWIN32 .

然后在windows 7上安装并设置环境路径。

  1. 我将制作如下所示的a.C源文件

    #include <stdio.h>
    int main()
    {
    //FileName: a.C
    printf("Hello World !!! Its works");
    return 0;
    }
  2. 我会制作Makefile。如下图

    #MakeFile Source Code... FileName: Makefile
    OBJS: a

    #add path visual c/c++ compiler
    PATH=C:/Program Files\ (x86)\Microsoft\ Visual\ Studio\ 9.0/VC

    CC: $(PATH)/bin/cl.exe

    all: a

    a:
    $(CC) -c a.C

    clean:
    rm -rf $(OBJS)
  3. 我编译源代码。它得到错误。

    Input: C:\Users\*****\Desktop\Test>make

    output:
    cc -c a.C
    process_begin: CreateProcess(NULL, cc -c a.C, ...) failed.
    make (e=2): The system cannot find the file specified.
    make: *** [a] Error 2

请让我帮忙,如何使用 Visual C++ 编译器构建此代码。

最佳答案

PATH 是 Makefile 中用于变量的错误名称,因为它也是在查找其他程序时列出要搜索的路径的变量名称。将其更改为其他内容。

关于c++ - 在 Windows 7 中通过 GnuWin32 使用 Microsoft Visual C/C++ 编译器编译源 (.C) 文件时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25759921/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com