繁体   English   中英

g++.exe: 安装问题, cannot exec `as': No such file or directory

[英]g++.exe: installation problem, cannot exec `as': No such file or directory

I'm trying to learn C++, I downloaded and installed g++ on Windows using Cygwin, following this tutorial: https://www.cs.odu.edu/~zeil/cs250PreTest/latest/Public/installingACompiler/#installing-the- mingw 编译器

就像在教程中一样,最后,我检查是否安装了 g++:

PS D:\Desktop\coursera_ODS_in_c-\Week 2> g++ --version
g++.exe (GCC) 3.4.5 (mingw-vista special r3)
Copyright (C) 2004 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

然后我尝试运行这段代码:

#include <iostream>

int main() {
    int num = 7;
    
    std::cout << "Values:" << num << std::endl;
    std::cout << "Address: " << &num << std::endl;
    return 0;
}

通过使用这个

PS D:\Desktop\coursera_ODS_in_c-\Week 2> g++ main.cpp

但我明白了:

g++.exe: installation problem, cannot exec `as': No such file or directory

你如何解决这个问题?

消息:

g++.exe: installation problem

明确指出您的 G++ 编译器的安装有问题。 另外,3.4.5 版本太旧了。 当前的稳定版本是 10.2(2020 年 7 月 23 日发布),用最新版本重新安装它可能会解决您的问题。 (由于没有给出足够的细节,错误原因仍然是个谜。)

尝试下载最新版本附带的 GNU GCC 编译器: GNU GCC

OTOH,程序编码正确, OnlineGDB上没有报告错误。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM