| Index |
![]() |
In JWlink's readme there's a list of what has been changed compared to Wlink. A manual is also available, in HTMLHelp format for Windows or plain HTML for DOS and Linux.
JWlink's source code is released under the Sybase Open Watcom Public License,
|
|
There's no direct replacement for MS link's /DEF option, which tells the linker to scan a so-called Module Definition File. However, since the main usage of such files is to define exports, it's simple to replace them with standard linker directive files.
Here's an example. Module Definition File MYDLL.DEF:
LIBRARY MYDLL
EXPORTS
MyFunction1
MyFunction2
MyFunction3
can be replaced by linker directive file MYDLL.RSP:
OP MODNAME=MYDLL
OP FUZZYEXPORT
EXPORT {
MyFunction1
MyFunction2
MyFunction3
}
and that file is added to JWlink's commandline with the @ directive:
jwlink format win pe dll file mydll.obj @MYDLL.RSP
![]() Binary Windows |
![]() Binary Linux |
![]() Binary DOS |
Source |
||
|---|---|---|---|---|---|
| JWlink v1.9 beta 11 | 23.04.2013 | JWlink_v19b11_win32 | JWlink_v19b11_linux | JWlink_v19b11_dos | JWlink_v19b11_src |
See also: JWasm