12 lines
328 B
Text
12 lines
328 B
Text
-- 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
|