elf to rdoff converter?

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
carbonBased

elf to rdoff converter?

Post by carbonBased »

I wonder if anyone knows of an elf to rdoff object converter program?

I'm looking to move some of my gcc code from elf to rdoff.

Alternatively, of course, I can compile to assembly (gcc -S), convert to intel syntax, and assemble and link using nasm... any ideas where that nifty little AT&T -> Intel asm converter went to, though? :)

Cheers,
Jeff
TheUbu

RE:elf to rdoff converter?

Post by TheUbu »

Jeff,

Hey any reason you would want rdoff over elf?




-Christopher
carbonBased

RE:elf to rdoff converter?

Post by carbonBased »

Not as of yet... I'm actually just researching the two at the moment.  RDOFF looks to be more simple but still similar in capabilities to ELF, but ELF is more standard and is supported by the GNU suite of compilers, etc.

Don't know which I want to use as default.  I'll probably support them both, though.

Jeff
TheUbu

RE:elf to rdoff converter?

Post by TheUbu »

Jeff,

Ok I at first tried to support a few formats a.out elf etc and now I'm just sticking with ELF as it does the job well. Maybe in the future I will come up with a different format but for now this works.


-Christopher
Post Reply