Add missing library in the list of libraries to link with in win32.
Libaria2 use methods in `iphlpapi` on Windows.
This commit is contained in:
parent
f503706914
commit
65969f4999
|
@ -156,7 +156,7 @@ class TargetInfo:
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
'root_path': root_paths[host],
|
'root_path': root_paths[host],
|
||||||
'extra_libs': ['-lwinmm', '-lws2_32', '-lshlwapi', '-lrpcrt4', '-lmsvcr90'],
|
'extra_libs': ['-lwinmm', '-lws2_32', '-lshlwapi', '-lrpcrt4', '-lmsvcr90', '-liphlpapi'],
|
||||||
'extra_cflags': ['-DWIN32'],
|
'extra_cflags': ['-DWIN32'],
|
||||||
'host_machine': {
|
'host_machine': {
|
||||||
'system': 'Windows',
|
'system': 'Windows',
|
||||||
|
|
Loading…
Reference in New Issue