2
0
mirror of https://github.com/rehlds/rehlds.git synced 2025-01-16 16:48:13 +03:00

Fix compilation under GCC.

This commit is contained in:
Lev 2017-03-12 18:25:11 +05:00
parent 69c1833b4b
commit 3607fc154a

View File

@ -62,6 +62,7 @@ void setupToolchain(NativeBinarySpec b) {
cfg.compilerOptions.args '-fno-exceptions' cfg.compilerOptions.args '-fno-exceptions'
cfg.linkerOptions.stripSymbolTable = false; cfg.linkerOptions.stripSymbolTable = false;
cfg.linkerOptions.staticLibStdCpp = false; cfg.linkerOptions.staticLibStdCpp = false;
cfg.extraLibs 'dl'
} }
ToolchainConfigUtils.apply(project, cfg, b); ToolchainConfigUtils.apply(project, cfg, b);