我正在尝试编译Apache HTTP服务器模块。其中一个步骤涉及从源代码编译。问题是我得到了
wsgi_memory.obj : error LNK2019: unresolved external symbol GetProcessMemoryInfo
referenced in function get PeakRSS
然后我检查了wsgi_memory的源代码,检查它是否缺少某些库,它目前有以下内容
#include <windows.h>
#include <stdio.h>
#include <Psapi.h>
#pragma comment(linker, “Psapi.lib”)
我目前有Windows SDK 7.1,我应该更新一些东西吗?