我有一个C ++项目,我曾经使用Visual C ++构建。在我使用的项目中:
#pragma comment(lib, "psapi")
以便链接psapi
。
G ++似乎不支持这种语法。根据我的理解,你必须传递一个带有库名称的-l
标志才能链接它。
我尝试了-lpsapi.lib
和-lpsapi
但是gcc无法找到它
所以我搜索了我能找到的地方,显然它在/lib/w32api/libpsapi.a
。所以我尝试了-llibpsapi.a
和-llibpsapi
,但仍然无法找到它
所以我尝试使用-L
标记添加路径,如-L/lib/w32api
,但它仍然找不到它。
然后我尝试添加两个环境变量而不是-L
标志:
export LIBRARY_PATH=/lib/w32api
export LD_LIBRARY_PATH=/lib/w32api
但它仍然无效。
错误消息是:
/usr/lib/gcc/x86_64-pc-cygwin/6.4.0/../../../../x86_64-pc-cygwin/bin/ld: cannot find -llibpsapi
collect2: error: ld returned 1 exit status
我的最后一次尝试是:
g++ -llibpsapi -o Example.exe Stuff.cpp Example.cpp -static
如果我完全退出-l
标志,那么我会收到这些错误:
/tmp/cctDMx8f.o:Stuff.cpp:(.text+0x139): undefined reference to `EnumProcessModules'
/tmp/cctDMx8f.o:Stuff.cpp:(.text+0x139): relocation truncated to fit: R_X86_64_PC32 against undefined symbol `EnumProcessModules'
/tmp/cctDMx8f.o:Stuff.cpp:(.text+0x181): undefined reference to `EnumProcessModules'
/tmp/cctDMx8f.o:Stuff.cpp:(.text+0x181): relocation truncated to fit: R_X86_64_PC32 against undefined symbol `EnumProcessModules'
/tmp/cctDMx8f.o:Stuff.cpp:(.text+0x1db): undefined reference to `GetModuleBaseNameA'
/tmp/cctDMx8f.o:Stuff.cpp:(.text+0x1db): relocation truncated to fit: R_X86_64_PC32 against undefined symbol `GetModuleBaseNameA'
collect2: error: ld returned 1 exit status
答案 0 :(得分:0)
我明白了。首先,我必须使用-lpsapi
,第二个重要部分是我不在-o
标志之前插入它。以下工作正常:
g++ -o Example.exe Stuff.cpp Example.cpp -static -lpsapi