Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
http://pastebin.com/gL40jpHA
当我想要做的只是找出一个完全不相关的问题时,我没有时间与臭名昭著的论坛语法搏斗。所有信息都在 pastebin 中。它不让我发布它,所以我以简单的方式做到了。我已经为这个问题苦苦挣扎了好几个小时。感谢任何回复的人。
pkg-config --cflags --libs allegro-5.0输出什么?
pkg-config --cflags --libs allegro-5.0
pkg-config --cflags它自己什么都不返回,因为库没有提供它来查找自定义 CFLAG,因此返回什么 CFLAGS 设置什么都没有。
pkg-config --cflags
尝试明确指定包含和库目录。
g++ -o foo allegtest.cpp -I/usr/include -L/usr/lib -lallegro输出什么?
g++ -o foo allegtest.cpp -I/usr/include -L/usr/lib -lallegro