gpt4 book ai didi

c++ - 使用 g++ 编译 Makefile 时遇到问题

转载 作者:行者123 更新时间:2023-11-30 01:15:52 29 4
gpt4 key购买 nike

我有一个 Makefile 的文本,我正在尝试编译它并生成一个 .e 可执行文件。我正在尝试用 g++ 编译它,但我遇到了一些困难。请注意,我有一台运行 Mavericks 的 MacBook Pro。

我尝试了两种方法——第一种是打开 Xcode 并制作一个新的 .cpp 文件。然后我将 Makefile 文本复制到空的 .cpp 文件中并将其保存为 Makefile.g++。然后在 Mac 终端执行

g++ Makefile.g++

返回错误

d: warning: ignoring file Makefile.g++, file was built for unsupported file format (      
0x23 0x20 0x47 0x65 0x6E 0x65 0x72 0x69 0x63 0x20 0x70 0x69 0x6D 0x63 0x20 0x67 ) which
is not the architecture being linked (x86_64): Makefile.g++

Undefined symbols for architecture x86_64:
"_main", referenced from:
implicit entry/start for main executable
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

然后我尝试将它保存为 Makefile.cpp,然后执行

g++ Makefile.cpp

然后我得到错误

Makefile.cpp:11:3: error: invalid preprocessing directive
# Generic pimc g++ makefile
^
Makefile.cpp:13:1: error: C++ requires a type specifier for all declarations
CC = g++
^~
Makefile.cpp:13:11: error: use of undeclared identifier 'g'
CC = g++
^
Makefile.cpp:16:2: error: invalid preprocessing directive
#CC = /opt/local/bin/g++-mp-4.7
^
Makefile.cpp:17:2: error: invalid preprocessing directive
#LD = /opt/local/bin/g++-mp-4.7
^
Makefile.cpp:33:3: error: invalid preprocessing directive
# Edit below to include details on your specific host
^
Makefile.cpp:116:3: error: invalid preprocessing directive
# -------------------------------------------------------------------------------
^
Makefile.cpp:119:3: error: invalid preprocessing directive
# Link
^
Makefile.cpp:123:3: error: invalid preprocessing directive
# Compile
^
Makefile.cpp:127:3: error: invalid preprocessing directive
# -------------------------------------------------------------------------------
^
Makefile.cpp:130:22: error: expected ';' after top level declarator
$(RM) $(PROG) $(OBJS)
^
;
11 errors generated.

我做错了什么? Makefile 不能在我的机器上运行,还是与我的命令有关?

最佳答案

哇哦,牛仔!您已经告诉 g++ Makefile.cpp 是一个 C++ 源文件,而不是 makefile。 mv Makefile.cpp Makefile,然后运行make。这应该有所帮助。

您混淆的根本原因是您认为应该编译 makefile,但 makefile 是一组编译源文件的规则。一旦掌握了窍门,命令 g++ Makefile 就会让您感到恐惧,因为您会知道 make 调用 g++.

关于c++ - 使用 g++ 编译 Makefile 时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27769146/

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