Compiling with qmake


Code:
 arm-angstrom-linux-gnueabi-gcc: onscripter : Aucun fichier ou dossier de ce type

arm-angstrom-linux-gnueabi-gcc: muldefs : Aucun fichier ou dossier de ce type

make: *** [onscripter] Erreur 1


(It means 'no file of this kind found')
 
Can you show the complete linkingcommand? There should be some objectfiles , that are linked to the binary onscripter...


This now seems to take onscripter as an inputfile, not as the outputfile.


Also I'd recommend you to google how a linker works and what the necessary commands and parameters are, so you know what you're missing here.
 
Last edited by a moderator:
Escuse me for the late answer, I'm back in the city i'm studying, and I'm getting some trouble accessing the net for now;


In my opinion, the linkercommand meaned the "CC:" and "LD:" ; therefore I have written spaces after the written path after "CC:" and "LD:".


This is the explanation of what I have done this post : http://boards.openpandora.org/index.php?/topic/9548-compiling-with-qmake/#entry181671


I don't know what you mean by the "linkingcommand", neither I know what to search :s
 
Last edited by a moderator:
Well, you cannot link a file without any objectfiles, that will be linked into this file.


Reading the ld manpage is a good start to understand what your command does and why it doesn't work:


http://linux.die.net/man/1/ld
 
Back
Top