SI
SI
discoversearch

We've detected that you're using an ad content blocking browser plug-in or feature. Ads provide a critical source of revenue to the continued operation of Silicon Investor.  We ask that you disable ad blocking while on Silicon Investor in the best interests of our community.  If you are not using an ad blocker but are still receiving this message, make sure your browser's tracking protection is set to the 'standard' level.
Technology Stocks : Intel Corporation (INTC) -- Ignore unavailable to you. Want to Upgrade?


To: Scumbria who wrote (128360)2/27/2001 10:43:28 AM
From: pgerassi  Respond to of 186894
 
Dear Scumbria:

Did you tell the linker to output a.out-i386 objects? I forget the exact switch. You can find it with the command "info ld" and you can pass those commands directly to ld or to gcc as linker commands. Remember, ld can translate one object type into another without linking the libraries in (via another option). "as" produces elf objects but, ld can make them a.out or any of those types from "objdump -i" via some option. You stated that a.out was able to be made into omf form.

As to translating gcc assembler output to MASM output, did you check the Cygnus port to see if their as is really a front end to MASM or duplicates its output? If not, a shell script probably could translate assembler output to MASM syntax. Check sites like www.freshmeat.net and www.gnu.org for such software.

Pete