我在构建生成文件时遇到问题。我的主文件是 .cpp 文件。在该文件中,有一个引用头文件 helper_funcs.h 的包含。然后这个头文件声明了各种函数,每个函数都在它们自己的 .c 文件中定义。我需要将 .c 文件编译成 .o 文件,将 .o 文件编译成 helper_funcs 库,然后当然可以从 .cpp 文件中引用它们(我希望这是有道理的)。
这是我输入“make”时得到的:
g++ -Wall -O3 -o chessboard chessboard.cpp helper_funcs.a -framework OpenGL -framework GLUT
ld: warning: ignoring file helper_funcs.a, file was built for unsupported file format ( 0x2E 0x2F 0x2E 0x5F 0x43 0x53 0x43 0x49 0x78 0x32 0x32 0x39 0x2E 0x68 0x00 0x00 ) which is not the architecture being linked (x86_64): helper_funcs.a
编辑:删除以前的 helper_funcs.a 版本并重新编译后,上面的错误消失了,但结果如下:
g++ -Wall -O3 -o chessboard chessboard.cpp helper_funcs.a -framework OpenGL -framework GLUT
Undefined symbols for architecture x86_64:
"f1(char const*)", referenced from:
_main in chessboard-MB9B95.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [chessboard] Error 1
LDFLAGS = -framework OpenGL -framework GLUT
CFLAGS = -c -g -Wall
all: chessboard
# Generic compile rules
.c.o:
gcc -c -O -Wall $<
.cpp.o:
g++ -c -Wall $<
# Generic compile and link
%: %.c helper_funcs.a
gcc -Wall -O3 -o $@ $^ $(LDFLAGS)
%: %.cpp helper_funcs.a
g++ -Wall -O3 -o $@ $^ $(LDFLAGS)
# Create archive
helper_funcs.a: f1.o f2.o
ar -rcs helper_funcs.a $^
这是chessboard.cpp的开始:
#define GL_GLEXT_PROTOTYPES
#include "chessboard.h"
#include "helper_funcs.h"
using namespace std;
int main()
{
// ...
f1("arg");
return 0;
}
helper_funcs.h:
#ifndef helper_funcs
#define helper_funcs
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <math.h>
#ifdef USEGLEW
#include <GL/glew.h>
#endif
#define GL_GLEXT_PROTOTYPES
#ifdef __APPLE__
#include <GLUT/glut.h>
#else
#include <GL/glut.h>
#endif
void f1(const char* where);
void f2(const char* format , ...);
#endif
这里有两个函数(这些显然有更多的描述性名称,但我一开始试图笼统,所以我会坚持使用它以避免混淆):
f1.c
#include "helper_funcs.h"
void f1(const char* where)
{
// blah blah blah
}
f2.c
#include "helper_funcs.h"
void f2(const char* format , ...)
{
// blah blah blah
}