Author Topic: support compiling *.asm??  (Read 4876 times)

Offline mmkider

  • Almost regular
  • **
  • Posts: 150
support compiling *.asm??
« on: September 24, 2005, 10:31:10 am »
how to compiling *.asm with codeblocks?
ex. using nasm to compiling *.asm  to *.o 

Offline thomas

  • Administrator
  • Lives here!
  • *****
  • Posts: 3979
Re: support compiling *.asm??
« Reply #1 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.
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."

Offline mmkider

  • Almost regular
  • **
  • Posts: 150
Re: support compiling *.asm??
« Reply #2 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.