News:

When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.

Main Menu

support compiling *.asm??

Started by mmkider, September 24, 2005, 10:31:10 AM

Previous topic - Next topic

mmkider

how to compiling *.asm with codeblocks?
ex. using nasm to compiling *.asm  to *.o 

thomas

There is no really good way to do this right now.

If you only have one .asm file, then you can get it assembled using custom build commands from the project manager's context menu. This is quite painful if you have a lot of files, though, as you have to add the custom build target for every file.

Another option is using a makefile, and yet another is to run a batch file from "Tools". Neither of these is really a good solution, though.
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."

mmkider

I mean how to extend easily to conbine an external tool with c++ compiler in the codeblocks environment.
I will think a solution to solve this question. thx.