Make: Nothing to be done for 'first'
-
wrote on 11 Aug 2014, 17:50 last edited by
Thanks u again, sir! here is a link , u can click the download tag on the top right side. Thanks for spending your time to give this help!!
http://pan.baidu.com/s/1c01pXWO
[quote author="andreyc" date="1407778604"]You can create a simple example that does not work the same way as your project and post it here.
Or put an archive somewhere and post a link here.[/quote] -
wrote on 11 Aug 2014, 19:50 last edited by
This is not Qt application. it is XWindow application.
I don't have all necessary libraries to build it.
Maybe if you run SimpleNG from command line you will see some logging and error messages. -
wrote on 12 Aug 2014, 11:41 last edited by
Thanks for your reply again, sir! I try to run it in Terminal, same like the situation in qtcreator..... no idea to fix it.....
[quote author="andreyc" date="1407786605"]This is not Qt application. it is XWindow application.
I don't have all necessary libraries to build it.
Maybe if you run SimpleNG from command line you will see some logging and error messages.[/quote] -
wrote on 12 Aug 2014, 13:24 last edited by
Could you post here how did you run it and what did you get. Just copy-past from a terminal.
-
wrote on 12 Aug 2014, 13:41 last edited by
Tanks for your reply again sir! really thanks! In the terminal. I use "make clean" first, and then use q make, and make.(some warning like yesterday) Then use ./XXX, it runs, the message is same like before, in the "application output". Sorry for my rubbish skill, just a fish .
After make, the message is :
g++ -Wl,-O1 -Wl,-rpath,/opt/qtsdk/5.1.0/gcc_64 -Wl,-rpath,/opt/qtsdk/5.1.0/gcc_64/lib -o SimpleNGL args.o argsgraph.o graph.o main.o maxflow.o -L/opt/qtsdk//5.1.0/gcc_64/lib -lQt5Gui -lQt5Core -lGL -lpthread
after ./XXX, no response.
All seems the same like yesterday.
[quote author="andreyc" date="1407849898"]Could you post here how did you run it and what did you get. Just copy-past from a terminal.[/quote] -
wrote on 12 Aug 2014, 13:45 last edited by
[quote author="alex111" date="1407850907"]after ./XXX, no response.
All seems the same like yesterday. [/quote]Looks like you have application problem and need to debug it.
Or maybe some required libraries are not installed.
Try to run it under debugger. -
wrote on 12 Aug 2014, 13:57 last edited by
Thanks again and again, Sir! I use debug option(F5), there is no message come out in the debugger window, it means sth wrong?
[quote author="andreyc" date="1407851135"][quote author="alex111" date="1407850907"]after ./XXX, no response.
All seems the same like yesterday. [/quote]Looks like you have application problem and need to debug it.
Or maybe some required libraries are not installed.
Try to run it under debugger.
[/quote] -
wrote on 12 Aug 2014, 14:01 last edited by
You need to run debugger is step mode.
Put breakpoint on function main() then use F5 to start debugger and use F10 to step through the code. -
wrote on 15 Feb 2018, 06:58 last edited by
hello alex. I am getting the same problem that is "make: Nothing to be done for 'first'". did you solve it finally? some persons advised to run in debug mode. it doesn't run in debug mode. only thing happens is run and after that showing this same message again and again. I tried using different version of QT but same error shows up.
-
hello alex. I am getting the same problem that is "make: Nothing to be done for 'first'". did you solve it finally? some persons advised to run in debug mode. it doesn't run in debug mode. only thing happens is run and after that showing this same message again and again. I tried using different version of QT but same error shows up.
@biswasp said in Make: Nothing to be done for 'first':
"make: Nothing to be done for 'first'"
This isn't a problem. As already said in this thread it means that the project is already built and up to date. If you app doesn't start then you have another problem. Build your app in Debug mode and then try to start it with debugger pressing F5. Maybe it simply crashes or some DLLs are missing.