我正在尝试通过 Jam 编译和链接 DLL。这是一个仅资源的 DLL,所以我需要弄清楚如何通过 Jam 将 /noentry 标志传递给链接器。
这是我的 Jamfile 现在的样子:
// need to figure out how to specify the /noentry CFLAG somewhere here
PackageDll foo
: NAME foo.dll
: DESC "Resource File"
: USE_C
;
Build foo
: system.pkg foo.rc
: .
;
提前致谢!