在 netbeans 中配置 gcc 编译器选项
我在我的 gcc 基础项目中使用 minixml 库。我可以使用以下命令行选项成功编译文件,
gcc -o <output file> <c file path> -L. -lem_log -lmxml -pthread
如何在 Netbeans 6.9.0 中使用相同的选项编译程序?
I am using minixml library in my gcc base project. I can successfully compile the files using the following command line option
gcc -o <output file> <c file path> -L. -lem_log -lmxml -pthread
how can I compile the program with the same options in Netbeans 6.9.0?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我知道这并不能完全回答你的问题,但是如果你在netbeans中使用QT项目,那么你可以在项目->属性->qt->专家->自定义定义中添加编译标志,然后你就可以添加一行,例如:QMAKE_CXXFLAGS+=-msse3。我最有可能尝试使用 QMAKE_LFLAGS 添加链接标志(尽管从未尝试过)。同样,这并不能直接回答您的问题,但可能会为您提供一些线索和解决方法。
I know that does not exactly answer your question, however if you are using QT project in netbeans, then you could add compilation flags in project->properties->qt->expert->custom definitions, and there you could add a line smthing like : QMAKE_CXXFLAGS+=-msse3. Linking flags I'd try to add with QMAKE_LFLAGS most probably (although never tried). Again, this does not directly answer your question, but might give you some clues and work arounds..