Windows下编译 libevent 64位静态库

按照libevent的文档,使用VC的nmake -f Makefile.nmake即可编译32位release模式。
因为项目中要求编译64位的版本,需要在Makefile.nmake中添加一个LIBFLAGS选项 /MACHINE:X64
如果要加调试信息,可以在 CFLAGS中加入/Zi,32位加调试选项是 CFLAGS中加/ZI,当然要调整优化选项/Ox

 

要正确运行"nmake -f Makefile.nmake",请走
    "microsoft visual studio  -> visual tools -> visual studio command prompt"
x64 走
    "microsoft visual studio  -> visual tools -> visual studio x64 win64 command prompt"

至于
    "visual studio x64 win64 command prompt"
    和
    "visual studio x64 cross tools command prompt"
    的区别/困惑,看
    http://artemgrygor.wordpress.com/2010/10/06/writing-windows-shell-extension-context-menu-with-icon-in-c-4-0/

    或得些许启发

你可能感兴趣的:(Windows下编译 libevent 64位静态库)