1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-02-20 13:54:14 +01:00

Make PVKII also link against stdc++ for Linux (#98)

This commit is contained in:
Spirrwell 2022-10-24 19:39:51 -04:00 committed by GitHub
parent 437feb57bd
commit 5c0c675c58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -392,7 +392,7 @@ class MMSConfig(object):
if compiler.target.platform in ['linux', 'mac']:
compiler.defines += ['NO_HOOK_MALLOC', 'NO_MALLOC_OVERRIDE']
if sdk.name in ['csgo', 'blade'] and compiler.target.platform == 'linux':
if sdk.name in ['csgo', 'blade', 'pvkii'] and compiler.target.platform == 'linux':
compiler.linkflags += ['-lstdc++']