d******n 发帖数: 42 | 1 maybe you can try qmake,
qmake can generate makefiles for you automatically, you just need to specify
the source files and header files.. |
|
r*********r 发帖数: 3195 | 2 刚试了一下, 好像比 qt 好...
qt 的 qmake, moc 太烦人. |
|
w*s 发帖数: 7227 | 3 just create a dummy c++ project, build ok, run ok.
hit F5 to debug, it says “Don’t know how to attach”.
1. Qt creator 2.4.1, it says based on Qt 4.7.4
2. /usr/lib/qmake-qt4 -v says using qt version 4.6.2 in /usr/lib
3. ubuntu, don’t know which version, uname -a says “62-ubuntu SMP … UTC
2011”
i’ve been coding for many years, mostly command line in linux, and windows.
spent 2 nights cannot solve this, trying to do updates, ubuntu keeps on
giving me error.
sigh, i don’t know what to say,
linux is ... 阅读全帖 |
|
d********g 发帖数: 10550 | 4 工作量取决于你这个其它C++库是源码还是库了。源码的不怎么需要改,库的就是看
Makefile,如果你用Qt的话可以顺带用qmake来做Makefile,跨平台方便一些 |
|
b***i 发帖数: 3043 | 5 希望大牛们能帮忙
1. 我在Visual Studio2015里面建了一个Solution,里面我建立了多个项目。我的最终
结果是一个可执行文件,而且最后是要在Linux下用Xilinx SDK的,这个本质就是
Eclipse。
那么,我一个项目要引用另一个项目,这个被引用的叫做Utils.Include很容易搞定。
但是类的static函数必须在cpp里面实现。结果linker说找不到symbol.这个我理解,
obj在另一个目录里。那么如何才能让主项目找到这些被引用的ojb?而且,最好不用生
成lib,我就在这个solution里面使用,不用给其他工程使用。静态编译进去就行了。
以前用Qt的时候,Qmake可以自动找到这些关联,然后生成make文件。如果我用visual
studio 2015或者Xilinx SDK (Eclipse, g++4.9.2),有这样的自动的工具吗?
2. 我看到一个生成uuid的例子,里面使用了很多C++11的技术。我想能不能把一部分
变量放进class的static 成员变量?我试过,会出现很多错误。另外,这个const char
ch_set... 阅读全帖 |
|