How to use nasm to generate a dynamic linked exe on windows?

孤街醉人 提交于 2019-12-13 06:21:02

问题


Basically I know we can use this to create a static linked exe on windows 32 bit:

nasm -fwin32 test.s
cl.exe test.obj /link libcmt.lib

But how to create a dynamic-linked exe from the obj file nasm generated?

来源:https://stackoverflow.com/questions/21010335/how-to-use-nasm-to-generate-a-dynamic-linked-exe-on-windows

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