Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: mmkider on September 24, 2005, 10:31:10 am

Title: support compiling *.asm??
Post by: mmkider on September 24, 2005, 10:31:10 am
how to compiling *.asm with codeblocks?
ex. using nasm to compiling *.asm  to *.o 
Title: Re: support compiling *.asm??
Post by: thomas on October 02, 2005, 01:54:09 pm
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.
Title: Re: support compiling *.asm??
Post by: mmkider on October 08, 2005, 07:29:38 am
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.