我需要鏈接我的Makefile Allegro遊戲開發庫。當我這樣做時,編譯器將返回:如何從我的Makefile鏈接Allegro 5?
Undefinied Reference < Function Name >.
我需要鏈接我的Makefile Allegro遊戲開發庫。當我這樣做時,編譯器將返回:如何從我的Makefile鏈接Allegro 5?
Undefinied Reference < Function Name >.
之前試圖嵌入彙編行成的Makefile,請確保您瞭解如何做到這一點的命令行,更重要的是,要確保它的工作原理:
g++ hello.cpp -o hello -I/usr/include/allegro5 -L/usr/lib -lallegro
然後,一個簡單的Makefile
編譯hello.cpp
可能是:
CXX=g++
CFLAGS=
LDFLAGS=-L/usr/lib -lallegro
INCLUDE=-I. -I/usr/include/allegro5
OBJS=hello.o
OUT=hello
all: hello_rule
clean:
rm -rf *.o hello
hello_rule: $(OBJS)
$(CXX) $(OBJS) -o $(OUT) $(INCLUDE) $(CFLAGS) $(LDFLAGS)
我的「/ lib」文件夾: http://paste.ideaslabs.com/show/naPRxykWbl –
對於Windows,您必須執行:'gcc src/main.c -o hello -I/include -L/lib -lallegro-5.0.3-md' – karlphillip
或者您可以鏈接到liballegro-5.0.3-monolith-md,這與鏈接Allegro及其所有插件相同。 – Matthew
什麼是特定的錯誤? – karlphillip