News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

Auto create .asm-Files via objdump

Started by Diablokiller999, November 26, 2012, 11:23:54 AM

Previous topic - Next topic

Diablokiller999

Hey guys!
I want to create automatically some asm-files out of my C-Project.
First I tried


$compiler -S $file -masm=intel  -Wa,-ahl=$file.asm

$compiler $options $includes -c $file -o $object


in the "use custom command..."-Option.

But I'm missing some comments, it's hard to see what call belongs to a special function.
I've read that objdump can help me out, but I'm trying for several hours to implement it to "post build scripts".
Any Idea how this could work?