mirror of
https://github.com/s1lentq/ReGameDLL_CS.git
synced 2024-12-27 23:25:41 +03:00
2b4eb6c137
* Put SSE code under HAVE_SSE define * Fix circular dependency on GCC 7.3 * Provide a way to disable AMXX related hacks, when it's not needed * Fix ASM inline for GCC * Fix compiling with MSVC * Fix compiling with MSVC and ICC * Check for HAVE_SSE in sse_mathfun.cpp after including precompiled, so SSE state will be determined * Better check for SSE availability * Missing call ::ClientCommand_ Make CSaveRestoreBuffer::m_Sizes as const Cosmetic changes * Gradle: Add GCC Toolchain * GCC: Fix compile * Gradle: Add -fno-devirtualize to compiler flags for GCC
56 lines
1.4 KiB
Groovy
56 lines
1.4 KiB
Groovy
import org.doomedsociety.gradlecpp.cfg.BinaryKind
|
|
import org.doomedsociety.gradlecpp.gcc.GccToolchainConfig
|
|
import org.doomedsociety.gradlecpp.gcc.OptimizationLevel
|
|
|
|
rootProject.ext.createGccConfig = { boolean release, BinaryKind binKind ->
|
|
GccToolchainConfig cfg
|
|
if (release) {
|
|
cfg = new GccToolchainConfig(
|
|
compilerOptions: new GccToolchainConfig.CompilerOptions(
|
|
optimizationLevel: OptimizationLevel.LEVEL_3,
|
|
stackProtector: false,
|
|
noBuiltIn: true,
|
|
positionIndependentCode: false,
|
|
extraDefines: [
|
|
'_GLIBCXX_USE_CXX11_ABI': 0,
|
|
]
|
|
),
|
|
|
|
linkerOptions: new GccToolchainConfig.LinkerOptions(
|
|
stripSymbolTable: false,
|
|
staticLibGcc: false,
|
|
staticLibStdCpp: false,
|
|
),
|
|
|
|
librarianOptions: new GccToolchainConfig.LibrarianOptions(
|
|
|
|
)
|
|
)
|
|
} else {
|
|
//debug
|
|
cfg = new GccToolchainConfig(
|
|
compilerOptions: new GccToolchainConfig.CompilerOptions(
|
|
optimizationLevel: OptimizationLevel.DISABLE,
|
|
stackProtector: true,
|
|
noBuiltIn: true,
|
|
extraDefines: [
|
|
'_GLIBCXX_USE_CXX11_ABI': 0,
|
|
]
|
|
),
|
|
|
|
linkerOptions: new GccToolchainConfig.LinkerOptions(
|
|
stripSymbolTable: false,
|
|
staticLibGcc: false,
|
|
staticLibStdCpp: false,
|
|
),
|
|
|
|
librarianOptions: new GccToolchainConfig.LibrarianOptions(
|
|
|
|
)
|
|
)
|
|
}
|
|
|
|
cfg.singleDefines('LINUX', '_LINUX')
|
|
return cfg
|
|
}
|