how to change linker setting in MASM32

不问归期 提交于 2019-12-13 02:11:51

问题


I am using MASM32 editor in windows 7 (64 bit). By default my linker is "Incremental Linker Version 5.12.8078" which is not linking my programs. I want to use this linker "Microsoft (R) Segmented Executable Linker Version 5.60.339 Dec 5 1994". Please tell me how to change my MASM32 setting and make it the default linker


回答1:


Load \masm32\menus.ini in an editor (you can use the MASM32 Editor).

Scroll down to

&Run Program,"{b}.exe"

[&Tools]

Insert two lines:

&Run Program,"{b}.exe"
-
Build 16-bit,cmd /C\masm32\bin\ml.exe /Bl"C:\masm32\bin\link16.exe" "{a}" & pause

[&Tools]

Save the file and restart MASM32 Editor.

Now you have under "Project" a new item "Build 16-bit".



来源:https://stackoverflow.com/questions/34218087/how-to-change-linker-setting-in-masm32

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!