From 5c0c675c5858bd6dd6904836731277c345cb5233 Mon Sep 17 00:00:00 2001 From: Spirrwell Date: Mon, 24 Oct 2022 19:39:51 -0400 Subject: [PATCH] Make PVKII also link against stdc++ for Linux (#98) --- AMBuildScript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AMBuildScript b/AMBuildScript index 32654b8..4aa104e 100644 --- a/AMBuildScript +++ b/AMBuildScript @@ -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++']