grbc/platform.hcfg
2024-09-27 20:02:30 -04:00

13 lines
328 B
Plaintext

-- Linux platform
local platform = Platform.new()
platform.name = "Linux64"
platform.cxx_compiler = grbc_find_compiler("g++")
platform.cc_compiler = grbc_find_compiler("gcc")
platform.is_64bit = true -- If set to false the compiler will need to produce 32bit code
platform.platform_type = PlatformType.Linux
return platform