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.
我想在不使用 make 文件的情况下在 apache qpid c++ 代理中运行一个 helloworld 示例。如果是这样,如何继续以及我需要包含哪些库?
make 是一种自动化构建步骤的工具。你可以在 Makefile 中做的所有事情也可以在命令行上完成。
我不知道apache和qpid有什么特别之处。你应该检查你的编译器和链接器手册。
最后使用 gcc 构建 hello_world 就像 gcc hello_world.c -o hello_world 一样简单
这就是全部。