| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294 |
- --
- -- Copyright 2010-2018 Branimir Karadzic. All rights reserved.
- -- License: https://github.com/bkaradzic/bx#license-bsd-2-clause
- --
- local bxDir = path.getabsolute("..")
- local function crtNone()
- defines {
- "BX_CRT_NONE=1",
- }
- buildoptions {
- "-nostdlib",
- "-nodefaultlibs",
- "-nostartfiles",
- "-Wa,--noexecstack",
- "-ffreestanding",
- }
- linkoptions {
- "-nostdlib",
- "-nodefaultlibs",
- "-nostartfiles",
- "-Wa,--noexecstack",
- "-ffreestanding",
- }
- configuration { "linux-*" }
- buildoptions {
- "-mpreferred-stack-boundary=4",
- "-mstackrealign",
- }
- linkoptions {
- "-mpreferred-stack-boundary=4",
- "-mstackrealign",
- }
- configuration {}
- end
- function toolchain(_buildDir, _libDir)
- newoption {
- trigger = "gcc",
- value = "GCC",
- description = "Choose GCC flavor",
- allowed = {
- { "android-arm", "Android - ARM" },
- { "android-mips", "Android - MIPS" },
- { "android-x86", "Android - x86" },
- { "asmjs", "Emscripten/asm.js" },
- { "freebsd", "FreeBSD" },
- { "linux-gcc", "Linux (GCC compiler)" },
- { "linux-gcc-afl", "Linux (GCC + AFL fuzzer)" },
- { "linux-gcc-6", "Linux (GCC-6 compiler)" },
- { "linux-clang", "Linux (Clang compiler)" },
- { "linux-clang-afl", "Linux (Clang + AFL fuzzer)" },
- { "linux-mips-gcc", "Linux (MIPS, GCC compiler)" },
- { "linux-arm-gcc", "Linux (ARM, GCC compiler)" },
- { "ios-arm", "iOS - ARM" },
- { "ios-arm64", "iOS - ARM64" },
- { "ios-simulator", "iOS - Simulator" },
- { "ios-simulator64", "iOS - Simulator 64" },
- { "tvos-arm64", "tvOS - ARM64" },
- { "tvos-simulator", "tvOS - Simulator" },
- { "mingw-gcc", "MinGW" },
- { "mingw-clang", "MinGW (clang compiler)" },
- { "netbsd", "NetBSD" },
- { "osx", "OSX" },
- { "orbis", "Orbis" },
- { "riscv", "RISC-V" },
- { "rpi", "RaspberryPi" },
- },
- }
- newoption {
- trigger = "vs",
- value = "toolset",
- description = "Choose VS toolset",
- allowed = {
- { "vs2012-clang", "Clang 3.6" },
- { "vs2013-clang", "Clang 3.6" },
- { "vs2015-clang", "Clang 3.9" },
- { "vs2017-clang", "Clang with MS CodeGen" },
- { "vs2012-xp", "Visual Studio 2012 targeting XP" },
- { "vs2013-xp", "Visual Studio 2013 targeting XP" },
- { "vs2015-xp", "Visual Studio 2015 targeting XP" },
- { "vs2017-xp", "Visual Studio 2017 targeting XP" },
- { "winstore100", "Universal Windows App 10.0" },
- { "durango", "Durango" },
- { "orbis", "Orbis" },
- },
- }
- newoption {
- trigger = "xcode",
- value = "xcode_target",
- description = "Choose XCode target",
- allowed = {
- { "osx", "OSX" },
- { "ios", "iOS" },
- { "tvos", "tvOS" },
- }
- }
- newoption {
- trigger = "with-android",
- value = "#",
- description = "Set Android platform version (default: android-14).",
- }
- newoption {
- trigger = "with-ios",
- value = "#",
- description = "Set iOS target version (default: 8.0).",
- }
- newoption {
- trigger = "with-macos",
- value = "#",
- description = "Set macOS target version (default 10.11).",
- }
- newoption {
- trigger = "with-tvos",
- value = "#",
- description = "Set tvOS target version (default: 9.0).",
- }
- newoption {
- trigger = "with-windows",
- value = "#",
- description = "Set the Windows target platform version (default: $WindowsSDKVersion or 8.1).",
- }
- newoption {
- trigger = "with-dynamic-runtime",
- description = "Dynamically link with the runtime rather than statically",
- }
- newoption {
- trigger = "with-32bit-compiler",
- description = "Use 32-bit compiler instead 64-bit.",
- }
- newoption {
- trigger = "with-avx",
- description = "Use AVX extension.",
- }
- -- Avoid error when invoking genie --help.
- if (_ACTION == nil) then return false end
- location (path.join(_buildDir, "projects", _ACTION))
- if _ACTION == "clean" then
- os.rmdir(_buildDir)
- os.mkdir(_buildDir)
- os.exit(1)
- end
- local androidPlatform = "android-24"
- if _OPTIONS["with-android"] then
- androidPlatform = "android-" .. _OPTIONS["with-android"]
- end
- local iosPlatform = ""
- if _OPTIONS["with-ios"] then
- iosPlatform = _OPTIONS["with-ios"]
- end
- local macosPlatform = ""
- if _OPTIONS["with-macos"] then
- macosPlatform = _OPTIONS["with-macos"]
- end
- local tvosPlatform = ""
- if _OPTIONS["with-tvos"] then
- tvosPlatform = _OPTIONS["with-tvos"]
- end
- local windowsPlatform = string.gsub(os.getenv("WindowsSDKVersion") or "8.1", "\\", "")
- if _OPTIONS["with-windows"] then
- windowsPlatform = _OPTIONS["with-windows"]
- end
- local compiler32bit = false
- if _OPTIONS["with-32bit-compiler"] then
- compiler32bit = true
- end
- flags {
- "Cpp11",
- "ExtraWarnings",
- }
- if _ACTION == "gmake" or _ACTION == "ninja" then
- if nil == _OPTIONS["gcc"] then
- print("GCC flavor must be specified!")
- os.exit(1)
- end
- if "android-arm" == _OPTIONS["gcc"] then
- if not os.getenv("ANDROID_NDK_ARM")
- or not os.getenv("ANDROID_NDK_CLANG")
- or not os.getenv("ANDROID_NDK_ROOT") then
- print("Set ANDROID_NDK_CLANG, ANDROID_NDK_ARM, and ANDROID_NDK_ROOT environment variables.")
- end
- premake.gcc.cc = "$(ANDROID_NDK_CLANG)/bin/clang"
- premake.gcc.cxx = "$(ANDROID_NDK_CLANG)/bin/clang++"
- premake.gcc.ar = "$(ANDROID_NDK_ARM)/bin/arm-linux-androideabi-ar"
- premake.gcc.llvm = true
- location (path.join(_buildDir, "projects", _ACTION .. "-android-arm"))
- elseif "android-mips" == _OPTIONS["gcc"] then
- if not os.getenv("ANDROID_NDK_MIPS")
- or not os.getenv("ANDROID_NDK_CLANG")
- or not os.getenv("ANDROID_NDK_ROOT") then
- print("Set ANDROID_NDK_CLANG, ANDROID_NDK_ARM, and ANDROID_NDK_ROOT environment variables.")
- end
- premake.gcc.cc = "$(ANDROID_NDK_CLANG)/bin/clang"
- premake.gcc.cxx = "$(ANDROID_NDK_CLANG)/bin/clang++"
- premake.gcc.llvm = true
- location (path.join(_buildDir, "projects", _ACTION .. "-android-mips"))
- elseif "android-x86" == _OPTIONS["gcc"] then
- if not os.getenv("ANDROID_NDK_X86")
- or not os.getenv("ANDROID_NDK_CLANG")
- or not os.getenv("ANDROID_NDK_ROOT") then
- print("Set ANDROID_NDK_CLANG, ANDROID_NDK_ARM, and ANDROID_NDK_ROOT environment variables.")
- end
- premake.gcc.cc = "$(ANDROID_NDK_CLANG)/bin/clang"
- premake.gcc.cxx = "$(ANDROID_NDK_CLANG)/bin/clang++"
- premake.gcc.llvm = true
- location (path.join(_buildDir, "projects", _ACTION .. "-android-x86"))
- elseif "asmjs" == _OPTIONS["gcc"] then
- if not os.getenv("EMSCRIPTEN") then
- print("Set EMSCRIPTEN environment variable.")
- end
- premake.gcc.cc = "\"$(EMSCRIPTEN)/emcc\""
- premake.gcc.cxx = "\"$(EMSCRIPTEN)/em++\""
- premake.gcc.ar = "\"$(EMSCRIPTEN)/emar\""
- premake.gcc.llvm = true
- location (path.join(_buildDir, "projects", _ACTION .. "-asmjs"))
- elseif "freebsd" == _OPTIONS["gcc"] then
- location (path.join(_buildDir, "projects", _ACTION .. "-freebsd"))
- elseif "ios-arm" == _OPTIONS["gcc"]
- or "ios-arm64" == _OPTIONS["gcc"] then
- premake.gcc.cc = "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang"
- premake.gcc.cxx = "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++"
- premake.gcc.ar = "ar"
- location (path.join(_buildDir, "projects", _ACTION .. "-" .. _OPTIONS["gcc"]))
- elseif "ios-simulator" == _OPTIONS["gcc"] then
- premake.gcc.cc = "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang"
- premake.gcc.cxx = "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++"
- premake.gcc.ar = "ar"
- location (path.join(_buildDir, "projects", _ACTION .. "-ios-simulator"))
- elseif "ios-simulator64" == _OPTIONS["gcc"] then
- premake.gcc.cc = "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang"
- premake.gcc.cxx = "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++"
- premake.gcc.ar = "ar"
- location (path.join(_buildDir, "projects", _ACTION .. "-ios-simulator64"))
- elseif "tvos-arm64" == _OPTIONS["gcc"] then
- premake.gcc.cc = "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang"
- premake.gcc.cxx = "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++"
- premake.gcc.ar = "ar"
- location (path.join(_buildDir, "projects", _ACTION .. "-tvos-arm64"))
- elseif "tvos-simulator" == _OPTIONS["gcc"] then
- premake.gcc.cc = "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang"
- premake.gcc.cxx = "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++"
- premake.gcc.ar = "ar"
- location (path.join(_buildDir, "projects", _ACTION .. "-tvos-simulator"))
- elseif "linux-gcc" == _OPTIONS["gcc"] then
- location (path.join(_buildDir, "projects", _ACTION .. "-linux"))
- elseif "linux-gcc-afl" == _OPTIONS["gcc"] then
- premake.gcc.cc = "afl-gcc"
- premake.gcc.cxx = "afl-g++"
- premake.gcc.ar = "ar"
- location (path.join(_buildDir, "projects", _ACTION .. "-linux"))
- elseif "linux-gcc-6" == _OPTIONS["gcc"] then
- premake.gcc.cc = "gcc-6"
- premake.gcc.cxx = "g++-6"
- premake.gcc.ar = "ar"
- location (path.join(_buildDir, "projects", _ACTION .. "-linux"))
- elseif "linux-clang" == _OPTIONS["gcc"] then
- premake.gcc.cc = "clang"
- premake.gcc.cxx = "clang++"
- premake.gcc.ar = "ar"
- location (path.join(_buildDir, "projects", _ACTION .. "-linux-clang"))
- elseif "linux-clang-afl" == _OPTIONS["gcc"] then
- premake.gcc.cc = "afl-clang"
- premake.gcc.cxx = "afl-clang++"
- premake.gcc.ar = "ar"
- location (path.join(_buildDir, "projects", _ACTION .. "-linux-clang"))
- elseif "linux-mips-gcc" == _OPTIONS["gcc"] then
- location (path.join(_buildDir, "projects", _ACTION .. "-linux-mips-gcc"))
- elseif "linux-arm-gcc" == _OPTIONS["gcc"] then
- location (path.join(_buildDir, "projects", _ACTION .. "-linux-arm-gcc"))
- elseif "linux-steamlink" == _OPTIONS["gcc"] then
- if not os.getenv("MARVELL_SDK_PATH") then
- print("Set MARVELL_SDK_PATH environment variable.")
- end
- premake.gcc.cc = "$(MARVELL_SDK_PATH)/toolchain/bin/armv7a-cros-linux-gnueabi-gcc"
- premake.gcc.cxx = "$(MARVELL_SDK_PATH)/toolchain/bin/armv7a-cros-linux-gnueabi-g++"
- premake.gcc.ar = "$(MARVELL_SDK_PATH)/toolchain/bin/armv7a-cros-linux-gnueabi-ar"
- location (path.join(_buildDir, "projects", _ACTION .. "-linux-steamlink"))
- elseif "mingw-gcc" == _OPTIONS["gcc"] then
- if not os.getenv("MINGW") then
- print("Set MINGW environment variable.")
- end
- local mingwToolchain = "x86_64-w64-mingw32"
- if compiler32bit then
- if os.is("linux") then
- mingwToolchain = "i686-w64-mingw32"
- else
- mingwToolchain = "mingw32"
- end
- end
- premake.gcc.cc = "$(MINGW)/bin/" .. mingwToolchain .. "-gcc"
- premake.gcc.cxx = "$(MINGW)/bin/" .. mingwToolchain .. "-g++"
- premake.gcc.ar = "$(MINGW)/bin/ar"
- location (path.join(_buildDir, "projects", _ACTION .. "-mingw-gcc"))
- elseif "mingw-clang" == _OPTIONS["gcc"] then
- premake.gcc.cc = "$(CLANG)/bin/clang"
- premake.gcc.cxx = "$(CLANG)/bin/clang++"
- premake.gcc.ar = "$(MINGW)/bin/ar"
- -- premake.gcc.ar = "$(CLANG)/bin/llvm-ar"
- -- premake.gcc.llvm = true
- location (path.join(_buildDir, "projects", _ACTION .. "-mingw-clang"))
- elseif "netbsd" == _OPTIONS["gcc"] then
- location (path.join(_buildDir, "projects", _ACTION .. "-netbsd"))
- elseif "osx" == _OPTIONS["gcc"] then
- if os.is("linux") then
- if not os.getenv("OSXCROSS") then
- print("Set OSXCROSS environment variable.")
- end
- local osxToolchain = "x86_64-apple-darwin15-"
- premake.gcc.cc = "$(OSXCROSS)/target/bin/" .. osxToolchain .. "clang"
- premake.gcc.cxx = "$(OSXCROSS)/target/bin/" .. osxToolchain .. "clang++"
- premake.gcc.ar = "$(OSXCROSS)/target/bin/" .. osxToolchain .. "ar"
- end
- location (path.join(_buildDir, "projects", _ACTION .. "-osx"))
- elseif "orbis" == _OPTIONS["gcc"] then
- if not os.getenv("SCE_ORBIS_SDK_DIR") then
- print("Set SCE_ORBIS_SDK_DIR environment variable.")
- end
- orbisToolchain = "$(SCE_ORBIS_SDK_DIR)/host_tools/bin/orbis-"
- premake.gcc.cc = orbisToolchain .. "clang"
- premake.gcc.cxx = orbisToolchain .. "clang++"
- premake.gcc.ar = orbisToolchain .. "ar"
- location (path.join(_buildDir, "projects", _ACTION .. "-orbis"))
- elseif "rpi" == _OPTIONS["gcc"] then
- location (path.join(_buildDir, "projects", _ACTION .. "-rpi"))
- elseif "riscv" == _OPTIONS["gcc"] then
- premake.gcc.cc = "$(FREEDOM_E_SDK)/toolchain/bin/riscv32-unknown-elf-gcc"
- premake.gcc.cxx = "$(FREEDOM_E_SDK)/toolchain/bin/riscv32-unknown-elf-g++"
- premake.gcc.ar = "$(FREEDOM_E_SDK)/toolchain/bin/riscv32-unknown-elf-ar"
- location (path.join(_buildDir, "projects", _ACTION .. "-riscv"))
- end
- elseif _ACTION == "vs2012"
- or _ACTION == "vs2013"
- or _ACTION == "vs2015"
- or _ACTION == "vs2017"
- then
- local action = premake.action.current()
- action.vstudio.windowsTargetPlatformVersion = windowsPlatform
- action.vstudio.windowsTargetPlatformMinVersion = windowsPlatform
- if (_ACTION .. "-clang") == _OPTIONS["vs"] then
- if "vs2017-clang" == _OPTIONS["vs"] then
- premake.vstudio.toolset = "v141_clang_c2"
- elseif "vs2015-clang" == _OPTIONS["vs"] then
- premake.vstudio.toolset = "LLVM-vs2014"
- else
- premake.vstudio.toolset = ("LLVM-" .. _ACTION)
- end
- location (path.join(_buildDir, "projects", _ACTION .. "-clang"))
- elseif "winstore100" == _OPTIONS["vs"] then
- premake.vstudio.toolset = "v141"
- premake.vstudio.storeapp = "10.0"
- platforms { "ARM" }
- location (path.join(_buildDir, "projects", _ACTION .. "-winstore100"))
- elseif "durango" == _OPTIONS["vs"] then
- if not os.getenv("DurangoXDK") then
- print("DurangoXDK not found.")
- end
- premake.vstudio.toolset = "v140"
- premake.vstudio.storeapp = "durango"
- platforms { "Durango" }
- location (path.join(_buildDir, "projects", _ACTION .. "-durango"))
- elseif "orbis" == _OPTIONS["vs"] then
- if not os.getenv("SCE_ORBIS_SDK_DIR") then
- print("Set SCE_ORBIS_SDK_DIR environment variable.")
- end
- platforms { "Orbis" }
- location (path.join(_buildDir, "projects", _ACTION .. "-orbis"))
- elseif ("vs2012-xp") == _OPTIONS["vs"] then
- premake.vstudio.toolset = ("v110_xp")
- location (path.join(_buildDir, "projects", _ACTION .. "-xp"))
- elseif "vs2013-xp" == _OPTIONS["vs"] then
- premake.vstudio.toolset = ("v120_xp")
- location (path.join(_buildDir, "projects", _ACTION .. "-xp"))
- elseif "vs2015-xp" == _OPTIONS["vs"] then
- premake.vstudio.toolset = ("v140_xp")
- location (path.join(_buildDir, "projects", _ACTION .. "-xp"))
- elseif "vs2015-xp" == _OPTIONS["vs"] then
- premake.vstudio.toolset = ("v141_xp")
- location (path.join(_buildDir, "projects", _ACTION .. "-xp"))
- end
- elseif _ACTION == "xcode4" then
- local action = premake.action.current()
- local str_or = function(str, def)
- return #str > 0 and str or def
- end
- if "osx" == _OPTIONS["xcode"] then
- action.xcode.macOSTargetPlatformVersion = str_or(macosPlatform, "10.11")
- premake.xcode.toolset = "macosx"
- location (path.join(_buildDir, "projects", _ACTION .. "-osx"))
- elseif "ios" == _OPTIONS["xcode"] then
- action.xcode.iOSTargetPlatformVersion = str_or(iosPlatform, "8.0")
- premake.xcode.toolset = "iphoneos"
- location (path.join(_buildDir, "projects", _ACTION .. "-ios"))
- elseif "tvos" == _OPTIONS["xcode"] then
- action.xcode.tvOSTargetPlatformVersion = str_or(tvosPlatform, "9.0")
- premake.xcode.toolset = "appletvos"
- location (path.join(_buildDir, "projects", _ACTION .. "-tvos"))
- end
- end
- if not _OPTIONS["with-dynamic-runtime"] then
- flags { "StaticRuntime" }
- end
- if _OPTIONS["with-avx"] then
- flags { "EnableAVX" }
- end
- if _OPTIONS["with-crtnone"] then
- crtNone()
- end
- flags {
- "NoPCH",
- "NativeWChar",
- "NoRTTI",
- "NoExceptions",
- "NoEditAndContinue",
- "NoFramePointer",
- "Symbols",
- }
- defines {
- "__STDC_LIMIT_MACROS",
- "__STDC_FORMAT_MACROS",
- "__STDC_CONSTANT_MACROS",
- }
- configuration { "Debug" }
- targetsuffix "Debug"
- defines {
- "_DEBUG",
- }
- configuration { "Release" }
- flags {
- "NoBufferSecurityCheck",
- "OptimizeSpeed",
- }
- defines {
- "NDEBUG",
- }
- targetsuffix "Release"
- configuration { "qbs" }
- flags {
- "ExtraWarnings",
- }
- configuration { "vs*", "x32" }
- flags {
- "EnableSSE2",
- }
- configuration { "vs*", "not orbis", "not NX32", "not NX64" }
- includedirs { path.join(bxDir, "include/compat/msvc") }
- defines {
- "WIN32",
- "_WIN32",
- "_HAS_EXCEPTIONS=0",
- "_HAS_ITERATOR_DEBUGGING=0",
- "_SCL_SECURE=0",
- "_SECURE_SCL=0",
- "_SCL_SECURE_NO_WARNINGS",
- "_CRT_SECURE_NO_WARNINGS",
- "_CRT_SECURE_NO_DEPRECATE",
- }
- buildoptions {
- "/wd4201", -- warning C4201: nonstandard extension used: nameless struct/union
- "/wd4324", -- warning C4324: '': structure was padded due to alignment specifier
- "/Ob2", -- The Inline Function Expansion
- }
- linkoptions {
- "/ignore:4221", -- LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
- }
- configuration { "vs2008" }
- includedirs { path.join(bxDir, "include/compat/msvc/pre1600") }
- configuration { "x32", "vs*" }
- targetdir (path.join(_buildDir, "win32_" .. _ACTION, "bin"))
- objdir (path.join(_buildDir, "win32_" .. _ACTION, "obj"))
- libdirs {
- path.join(_libDir, "lib/win32_" .. _ACTION),
- }
- configuration { "x64", "vs*" }
- defines { "_WIN64" }
- targetdir (path.join(_buildDir, "win64_" .. _ACTION, "bin"))
- objdir (path.join(_buildDir, "win64_" .. _ACTION, "obj"))
- libdirs {
- path.join(_libDir, "lib/win64_" .. _ACTION),
- }
- configuration { "x32", "vs2017" }
- targetdir (path.join(_buildDir, "win32_" .. _ACTION, "bin"))
- objdir (path.join(_buildDir, "win32_" .. _ACTION, "obj"))
- libdirs {
- path.join(_libDir, "lib/win32_" .. _ACTION),
- }
- configuration { "x64", "vs2017" }
- defines { "_WIN64" }
- targetdir (path.join(_buildDir, "win64_" .. _ACTION, "bin"))
- objdir (path.join(_buildDir, "win64_" .. _ACTION, "obj"))
- libdirs {
- path.join(_libDir, "lib/win64_" .. _ACTION),
- }
- configuration { "ARM", "vs*" }
- targetdir (path.join(_buildDir, "arm_" .. _ACTION, "bin"))
- objdir (path.join(_buildDir, "arm_" .. _ACTION, "obj"))
- configuration { "vs*-clang" }
- buildoptions {
- "-Qunused-arguments",
- }
- configuration { "x32", "vs*-clang" }
- targetdir (path.join(_buildDir, "win32_" .. _ACTION .. "-clang/bin"))
- objdir (path.join(_buildDir, "win32_" .. _ACTION .. "-clang/obj"))
- configuration { "x64", "vs*-clang" }
- targetdir (path.join(_buildDir, "win64_" .. _ACTION .. "-clang/bin"))
- objdir (path.join(_buildDir, "win64_" .. _ACTION .. "-clang/obj"))
- configuration { "winstore*" }
- removeflags {
- "StaticRuntime",
- "NoBufferSecurityCheck",
- }
- buildoptions {
- "/wd4530", -- vccorlib.h(1345): warning C4530: C++ exception handler used, but unwind semantics are not enabled. Specify /EHsc
- }
- linkoptions {
- "/ignore:4264" -- LNK4264: archiving object file compiled with /ZW into a static library; note that when authoring Windows Runtime types it is not recommended to link with a static library that contains Windows Runtime metadata
- }
- configuration { "*-gcc* or osx" }
- buildoptions {
- "-Wshadow",
- }
- configuration { "mingw-*" }
- defines { "WIN32" }
- includedirs { path.join(bxDir, "include/compat/mingw") }
- defines {
- "MINGW_HAS_SECURE_API=1",
- }
- buildoptions {
- "-Wunused-value",
- "-fdata-sections",
- "-ffunction-sections",
- "-msse2",
- "-Wunused-value",
- "-Wundef",
- }
- linkoptions {
- "-Wl,--gc-sections",
- "-static",
- "-static-libgcc",
- "-static-libstdc++",
- }
- configuration { "x32", "mingw-gcc" }
- targetdir (path.join(_buildDir, "win32_mingw-gcc/bin"))
- objdir (path.join(_buildDir, "win32_mingw-gcc/obj"))
- libdirs {
- path.join(_libDir, "lib/win32_mingw-gcc"),
- }
- buildoptions {
- "-m32",
- "-mstackrealign",
- }
- configuration { "x64", "mingw-gcc" }
- targetdir (path.join(_buildDir, "win64_mingw-gcc/bin"))
- objdir (path.join(_buildDir, "win64_mingw-gcc/obj"))
- libdirs {
- path.join(_libDir, "lib/win64_mingw-gcc"),
- }
- buildoptions { "-m64" }
- configuration { "mingw-clang" }
- buildoptions {
- "-isystem$(MINGW)/lib/gcc/x86_64-w64-mingw32/4.8.1/include/c++",
- "-isystem$(MINGW)/lib/gcc/x86_64-w64-mingw32/4.8.1/include/c++/x86_64-w64-mingw32",
- "-isystem$(MINGW)/x86_64-w64-mingw32/include",
- }
- linkoptions {
- "-Qunused-arguments",
- "-Wno-error=unused-command-line-argument-hard-error-in-future",
- }
- configuration { "x32", "mingw-clang" }
- targetdir (path.join(_buildDir, "win32_mingw-clang/bin"))
- objdir (path.join(_buildDir, "win32_mingw-clang/obj"))
- libdirs {
- path.join(_libDir, "lib/win32_mingw-clang"),
- }
- buildoptions { "-m32" }
- configuration { "x64", "mingw-clang" }
- targetdir (path.join(_buildDir, "win64_mingw-clang/bin"))
- objdir (path.join(_buildDir, "win64_mingw-clang/obj"))
- libdirs {
- path.join(_libDir, "lib/win64_mingw-clang"),
- }
- buildoptions { "-m64" }
- configuration { "linux-clang" }
- configuration { "linux-gcc-6" }
- buildoptions {
- -- "-fno-omit-frame-pointer",
- -- "-fsanitize=address",
- -- "-fsanitize=undefined",
- -- "-fsanitize=float-divide-by-zero",
- -- "-fsanitize=float-cast-overflow",
- }
- links {
- -- "asan",
- -- "ubsan",
- }
- configuration { "linux-gcc" }
- buildoptions {
- "-mfpmath=sse",
- }
- configuration { "linux-gcc* or linux-clang*" }
- buildoptions {
- "-msse2",
- -- "-Wdouble-promotion",
- -- "-Wduplicated-branches",
- -- "-Wduplicated-cond",
- -- "-Wjump-misses-init",
- "-Wlogical-op",
- "-Wshadow",
- -- "-Wnull-dereference",
- "-Wunused-value",
- "-Wundef",
- -- "-Wuseless-cast",
- }
- links {
- "rt",
- "dl",
- }
- linkoptions {
- "-Wl,--gc-sections",
- "-Wl,--as-needed",
- }
- configuration { "linux-gcc*", "x32" }
- targetdir (path.join(_buildDir, "linux32_gcc/bin"))
- objdir (path.join(_buildDir, "linux32_gcc/obj"))
- libdirs { path.join(_libDir, "lib/linux32_gcc") }
- buildoptions {
- "-m32",
- }
- configuration { "linux-gcc*", "x64" }
- targetdir (path.join(_buildDir, "linux64_gcc/bin"))
- objdir (path.join(_buildDir, "linux64_gcc/obj"))
- libdirs { path.join(_libDir, "lib/linux64_gcc") }
- buildoptions {
- "-m64",
- }
- configuration { "linux-clang*", "x32" }
- targetdir (path.join(_buildDir, "linux32_clang/bin"))
- objdir (path.join(_buildDir, "linux32_clang/obj"))
- libdirs { path.join(_libDir, "lib/linux32_clang") }
- buildoptions {
- "-m32",
- }
- configuration { "linux-clang*", "x64" }
- targetdir (path.join(_buildDir, "linux64_clang/bin"))
- objdir (path.join(_buildDir, "linux64_clang/obj"))
- libdirs { path.join(_libDir, "lib/linux64_clang") }
- buildoptions {
- "-m64",
- }
- configuration { "linux-mips-gcc" }
- targetdir (path.join(_buildDir, "linux32_mips_gcc/bin"))
- objdir (path.join(_buildDir, "linux32_mips_gcc/obj"))
- libdirs { path.join(_libDir, "lib/linux32_mips_gcc") }
- buildoptions {
- "-Wunused-value",
- "-Wundef",
- }
- links {
- "rt",
- "dl",
- }
- linkoptions {
- "-Wl,--gc-sections",
- }
- configuration { "linux-arm-gcc" }
- targetdir (path.join(_buildDir, "linux32_arm_gcc/bin"))
- objdir (path.join(_buildDir, "linux32_arm_gcc/obj"))
- libdirs { path.join(_libDir, "lib/linux32_arm_gcc") }
- buildoptions {
- "-Wunused-value",
- "-Wundef",
- }
- links {
- "rt",
- "dl",
- }
- linkoptions {
- "-Wl,--gc-sections",
- }
- configuration { "android-*" }
- targetprefix ("lib")
- flags {
- "NoImportLib",
- }
- includedirs {
- "$(ANDROID_NDK_ROOT)/sources/cxx-stl/llvm-libc++/include",
- "$(ANDROID_NDK_ROOT)/sources/android/native_app_glue",
- }
- linkoptions {
- "-nostdlib",
- }
- links {
- "c",
- "dl",
- "m",
- "android",
- "log",
- "c++",
- "gcc",
- }
- buildoptions {
- "-fPIC",
- "-no-canonical-prefixes",
- "-Wa,--noexecstack",
- "-fstack-protector-strong",
- "-ffunction-sections",
- "-Wunused-value",
- "-Wundef",
- }
- linkoptions {
- "-no-canonical-prefixes",
- "-Wl,--no-undefined",
- "-Wl,-z,noexecstack",
- "-Wl,-z,relro",
- "-Wl,-z,now",
- }
- configuration { "linux-steamlink" }
- targetdir (path.join(_buildDir, "steamlink/bin"))
- objdir (path.join(_buildDir, "steamlink/obj"))
- libdirs { path.join(_libDir, "lib/steamlink") }
- includedirs { path.join(bxDir, "include/compat/linux") }
- defines {
- "__STEAMLINK__=1", -- There is no special prefedined compiler symbol to detect SteamLink, faking it.
- }
- buildoptions {
- "-Wfatal-errors",
- "-Wunused-value",
- "-Wundef",
- "-pthread",
- "-marm",
- "-mfloat-abi=hard",
- "--sysroot=$(MARVELL_SDK_PATH)/rootfs",
- }
- linkoptions {
- "-static-libgcc",
- "-static-libstdc++",
- "--sysroot=$(MARVELL_SDK_PATH)/rootfs",
- }
- configuration { "android-arm" }
- targetdir (path.join(_buildDir, "android-arm/bin"))
- objdir (path.join(_buildDir, "android-arm/obj"))
- libdirs {
- path.join(_libDir, "lib/android-arm"),
- "$(ANDROID_NDK_ROOT)/sources/cxx-stl/llvm-libc++/libs/armeabi-v7a",
- }
- includedirs {
- "$(ANDROID_NDK_ROOT)/sources/cxx-stl/llvm-libc++/libs/armeabi-v7a/include",
- "$(ANDROID_NDK_ROOT)/sources/cxx-stl/llvm-libc++/include",
- }
- buildoptions {
- "-gcc-toolchain $(ANDROID_NDK_ARM)",
- "--sysroot=" .. path.join("$(ANDROID_NDK_ROOT)/platforms", androidPlatform, "arch-arm"),
- "-target armv7-none-linux-androideabi",
- "-mthumb",
- "-march=armv7-a",
- "-mfloat-abi=softfp",
- "-mfpu=neon",
- "-Wunused-value",
- "-Wundef",
- }
- linkoptions {
- "-gcc-toolchain $(ANDROID_NDK_ARM)",
- "--sysroot=" .. path.join("$(ANDROID_NDK_ROOT)/platforms", androidPlatform, "arch-arm"),
- path.join("$(ANDROID_NDK_ROOT)/platforms", androidPlatform, "arch-arm/usr/lib/crtbegin_so.o"),
- path.join("$(ANDROID_NDK_ROOT)/platforms", androidPlatform, "arch-arm/usr/lib/crtend_so.o"),
- "-target armv7-none-linux-androideabi",
- "-march=armv7-a",
- "-Wl,--fix-cortex-a8",
- }
- configuration { "android-mips" }
- targetdir (path.join(_buildDir, "android-mips/bin"))
- objdir (path.join(_buildDir, "android-mips/obj"))
- libdirs {
- path.join(_libDir, "lib/android-mips"),
- "$(ANDROID_NDK_ROOT)/sources/cxx-stl/llvm-libc++/libs/mips",
- }
- includedirs {
- "$(ANDROID_NDK_ROOT)/sources/cxx-stl/llvm-libc++/libs/mips/include",
- }
- buildoptions {
- "-gcc-toolchain $(ANDROID_NDK_MIPS)",
- "--sysroot=" .. path.join("$(ANDROID_NDK_ROOT)/platforms", androidPlatform, "arch-mips"),
- "-target mipsel-none-linux-android",
- "-mips32",
- "-Wunused-value",
- "-Wundef",
- }
- linkoptions {
- "-gcc-toolchain $(ANDROID_NDK_MIPS)",
- "--sysroot=" .. path.join("$(ANDROID_NDK_ROOT)/platforms", androidPlatform, "arch-mips"),
- path.join("$(ANDROID_NDK_ROOT)/platforms", androidPlatform, "arch-mips/usr/lib/crtbegin_so.o"),
- path.join("$(ANDROID_NDK_ROOT)/platforms", androidPlatform, "arch-mips/usr/lib/crtend_so.o"),
- "-target mipsel-none-linux-android",
- "-mips32",
- }
- configuration { "android-x86" }
- targetdir (path.join(_buildDir, "android-x86/bin"))
- objdir (path.join(_buildDir, "android-x86/obj"))
- libdirs {
- path.join(_libDir, "lib/android-x86"),
- "$(ANDROID_NDK_ROOT)/sources/cxx-stl/llvm-libc++/libs/x86",
- }
- includedirs {
- "$(ANDROID_NDK_ROOT)/sources/cxx-stl/llvm-libc++/libs/x86/include",
- }
- buildoptions {
- "-gcc-toolchain $(ANDROID_NDK_X86)",
- "--sysroot=" .. path.join("$(ANDROID_NDK_ROOT)/platforms", androidPlatform, "arch-x86"),
- "-target i686-none-linux-android",
- "-march=i686",
- "-mtune=atom",
- "-mstackrealign",
- "-msse3",
- "-mfpmath=sse",
- "-Wunused-value",
- "-Wundef",
- }
- linkoptions {
- "-gcc-toolchain $(ANDROID_NDK_X86)",
- "--sysroot=" .. path.join("$(ANDROID_NDK_ROOT)/platforms", androidPlatform, "arch-x86"),
- path.join("$(ANDROID_NDK_ROOT)/platforms", androidPlatform, "arch-x86/usr/lib/crtbegin_so.o"),
- path.join("$(ANDROID_NDK_ROOT)/platforms", androidPlatform, "arch-x86/usr/lib/crtend_so.o"),
- "-target i686-none-linux-android",
- }
- configuration { "asmjs" }
- targetdir (path.join(_buildDir, "asmjs/bin"))
- objdir (path.join(_buildDir, "asmjs/obj"))
- libdirs { path.join(_libDir, "lib/asmjs") }
- buildoptions {
- "-i\"system$(EMSCRIPTEN)/system/include\"",
- "-i\"system$(EMSCRIPTEN)/system/include/libcxx\"",
- "-i\"system$(EMSCRIPTEN)/system/include/libc\"",
- "-Wunused-value",
- "-Wundef",
- }
- configuration { "freebsd" }
- targetdir (path.join(_buildDir, "freebsd/bin"))
- objdir (path.join(_buildDir, "freebsd/obj"))
- libdirs { path.join(_libDir, "lib/freebsd") }
- includedirs {
- path.join(bxDir, "include/compat/freebsd"),
- }
- configuration { "xbox360" }
- targetdir (path.join(_buildDir, "xbox360/bin"))
- objdir (path.join(_buildDir, "xbox360/obj"))
- includedirs { path.join(bxDir, "include/compat/msvc") }
- libdirs { path.join(_libDir, "lib/xbox360") }
- defines {
- "NOMINMAX",
- }
- configuration { "durango" }
- targetdir (path.join(_buildDir, "durango/bin"))
- objdir (path.join(_buildDir, "durango/obj"))
- includedirs { path.join(bxDir, "include/compat/msvc") }
- libdirs { path.join(_libDir, "lib/durango") }
- removeflags { "StaticRuntime" }
- defines {
- "NOMINMAX",
- }
- configuration { "netbsd" }
- targetdir (path.join(_buildDir, "netbsd/bin"))
- objdir (path.join(_buildDir, "netbsd/obj"))
- libdirs { path.join(_libDir, "lib/netbsd") }
- includedirs {
- path.join(bxDir, "include/compat/freebsd"),
- }
- configuration { "osx", "x32" }
- targetdir (path.join(_buildDir, "osx32_clang/bin"))
- objdir (path.join(_buildDir, "osx32_clang/obj"))
- --libdirs { path.join(_libDir, "lib/osx32_clang") }
- buildoptions {
- "-m32",
- }
- configuration { "osx", "x64" }
- targetdir (path.join(_buildDir, "osx64_clang/bin"))
- objdir (path.join(_buildDir, "osx64_clang/obj"))
- --libdirs { path.join(_libDir, "lib/osx64_clang") }
- buildoptions {
- "-m64",
- }
- configuration { "osx", "Universal" }
- targetdir (path.join(_buildDir, "osx_universal/bin"))
- objdir (path.join(_buildDir, "osx_universal/bin"))
- configuration { "osx" }
- buildoptions {
- "-Wfatal-errors",
- "-msse2",
- "-Wunused-value",
- "-Wundef",
- }
- includedirs { path.join(bxDir, "include/compat/osx") }
- configuration { "ios*" }
- linkoptions {
- "-lc++",
- }
- buildoptions {
- "-Wfatal-errors",
- "-Wunused-value",
- "-Wundef",
- }
- includedirs { path.join(bxDir, "include/compat/ios") }
- configuration { "xcode4", "ios*" }
- targetdir (path.join(_buildDir, "ios-arm/bin"))
- objdir (path.join(_buildDir, "ios-arm/obj"))
- configuration { "ios-arm" }
- targetdir (path.join(_buildDir, "ios-arm/bin"))
- objdir (path.join(_buildDir, "ios-arm/obj"))
- libdirs { path.join(_libDir, "lib/ios-arm") }
- linkoptions {
- "-arch armv7",
- }
- buildoptions {
- "-arch armv7",
- }
- configuration { "ios-arm64" }
- targetdir (path.join(_buildDir, "ios-arm64/bin"))
- objdir (path.join(_buildDir, "ios-arm64/obj"))
- libdirs { path.join(_libDir, "lib/ios-arm64") }
- linkoptions {
- "-arch arm64",
- }
- buildoptions {
- "-arch arm64",
- }
- configuration { "ios-arm*" }
- linkoptions {
- "-miphoneos-version-min=7.0",
- "--sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS" ..iosPlatform .. ".sdk",
- "-L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS" ..iosPlatform .. ".sdk/usr/lib/system",
- "-F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS" ..iosPlatform .. ".sdk/System/Library/Frameworks",
- "-F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS" ..iosPlatform .. ".sdk/System/Library/PrivateFrameworks",
- }
- buildoptions {
- "-miphoneos-version-min=7.0",
- "--sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS" ..iosPlatform .. ".sdk",
- }
- configuration { "ios-simulator" }
- targetdir (path.join(_buildDir, "ios-simulator/bin"))
- objdir (path.join(_buildDir, "ios-simulator/obj"))
- libdirs { path.join(_libDir, "lib/ios-simulator") }
- linkoptions {
- "-mios-simulator-version-min=7.0",
- "-arch i386",
- "--sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator" ..iosPlatform .. ".sdk",
- "-L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator" ..iosPlatform .. ".sdk/usr/lib/system",
- "-F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator" ..iosPlatform .. ".sdk/System/Library/Frameworks",
- "-F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator" ..iosPlatform .. ".sdk/System/Library/PrivateFrameworks",
- }
- buildoptions {
- "-mios-simulator-version-min=7.0",
- "-arch i386",
- "--sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator" ..iosPlatform .. ".sdk",
- }
- configuration { "ios-simulator64" }
- targetdir (path.join(_buildDir, "ios-simulator64/bin"))
- objdir (path.join(_buildDir, "ios-simulator64/obj"))
- libdirs { path.join(_libDir, "lib/ios-simulator64") }
- linkoptions {
- "-mios-simulator-version-min=7.0",
- "-arch x86_64",
- "--sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator" ..iosPlatform .. ".sdk",
- "-L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator" ..iosPlatform .. ".sdk/usr/lib/system",
- "-F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator" ..iosPlatform .. ".sdk/System/Library/Frameworks",
- "-F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator" ..iosPlatform .. ".sdk/System/Library/PrivateFrameworks",
- }
- buildoptions {
- "-mios-simulator-version-min=7.0",
- "-arch x86_64",
- "--sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator" ..iosPlatform .. ".sdk",
- }
- configuration { "tvos*" }
- linkoptions {
- "-lc++",
- }
- buildoptions {
- "-Wfatal-errors",
- "-Wunused-value",
- "-Wundef",
- }
- includedirs { path.join(bxDir, "include/compat/ios") }
- configuration { "xcode4", "tvos*" }
- targetdir (path.join(_buildDir, "tvos-arm64/bin"))
- objdir (path.join(_buildDir, "tvos-arm64/obj"))
- configuration { "tvos-arm64" }
- targetdir (path.join(_buildDir, "tvos-arm64/bin"))
- objdir (path.join(_buildDir, "tvos-arm64/obj"))
- libdirs { path.join(_libDir, "lib/tvos-arm64") }
- linkoptions {
- "-mtvos-version-min=9.0",
- "-arch arm64",
- "--sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS" ..tvosPlatform .. ".sdk",
- "-L/Applications/Xcode.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS" ..tvosPlatform .. ".sdk/usr/lib/system",
- "-F/Applications/Xcode.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS" ..tvosPlatform .. ".sdk/System/Library/Frameworks",
- "-F/Applications/Xcode.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS" ..tvosPlatform .. ".sdk/System/Library/PrivateFrameworks",
- }
- buildoptions {
- "-mtvos-version-min=9.0",
- "-arch arm64",
- "--sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS" ..tvosPlatform .. ".sdk",
- }
- configuration { "tvos-simulator" }
- targetdir (path.join(_buildDir, "tvos-simulator/bin"))
- objdir (path.join(_buildDir, "tvos-simulator/obj"))
- libdirs { path.join(_libDir, "lib/tvos-simulator") }
- linkoptions {
- "-mtvos-simulator-version-min=9.0",
- "-arch i386",
- "--sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/AppleTVSimulator.platform/Developer/SDKs/AppleTVSimulator" ..tvosPlatform .. ".sdk",
- "-L/Applications/Xcode.app/Contents/Developer/Platforms/AppleTVSimulator.platform/Developer/SDKs/AppleTVSimulator" ..tvosPlatform .. ".sdk/usr/lib/system",
- "-F/Applications/Xcode.app/Contents/Developer/Platforms/AppleTVSimulator.platform/Developer/SDKs/AppleTVSimulator" ..tvosPlatform .. ".sdk/System/Library/Frameworks",
- "-F/Applications/Xcode.app/Contents/Developer/Platforms/AppleTVSimulator.platform/Developer/SDKs/AppleTVSimulator" ..tvosPlatform .. ".sdk/System/Library/PrivateFrameworks",
- }
- buildoptions {
- "-mtvos-simulator-version-min=9.0",
- "-arch i386",
- "--sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/AppleTVSimulator.platform/Developer/SDKs/AppleTVSimulator" ..tvosPlatform .. ".sdk",
- }
- configuration { "orbis" }
- targetdir (path.join(_buildDir, "orbis/bin"))
- objdir (path.join(_buildDir, "orbis/obj"))
- libdirs { path.join(_libDir, "lib/orbis") }
- includedirs {
- path.join(bxDir, "include/compat/freebsd"),
- "$(SCE_ORBIS_SDK_DIR)/target/include",
- "$(SCE_ORBIS_SDK_DIR)/target/include_common",
- }
- configuration { "rpi" }
- targetdir (path.join(_buildDir, "rpi/bin"))
- objdir (path.join(_buildDir, "rpi/obj"))
- libdirs {
- path.join(_libDir, "lib/rpi"),
- "/opt/vc/lib",
- }
- defines {
- "__VCCOREVER__=0x04000000", -- There is no special prefedined compiler symbol to detect RaspberryPi, faking it.
- "__STDC_VERSION__=199901L",
- }
- buildoptions {
- "-Wunused-value",
- "-Wundef",
- }
- includedirs {
- "/opt/vc/include",
- "/opt/vc/include/interface/vcos/pthreads",
- "/opt/vc/include/interface/vmcs_host/linux",
- }
- links {
- "rt",
- "dl",
- }
- linkoptions {
- "-Wl,--gc-sections",
- }
- configuration { "riscv" }
- targetdir (path.join(_buildDir, "riscv/bin"))
- objdir (path.join(_buildDir, "riscv/obj"))
- defines {
- "__BSD_VISIBLE",
- "__MISC_VISIBLE",
- }
- includedirs {
- "$(FREEDOM_E_SDK)/toolchain/riscv32-unknown-elf/include",
- path.join(bxDir, "include/compat/riscv"),
- }
- buildoptions {
- "-Wunused-value",
- "-Wundef",
- "--sysroot=$(FREEDOM_E_SDK)/toolchain/riscv32-unknown-elf",
- }
- configuration {} -- reset configuration
- return true
- end
- function strip()
- configuration { "android-arm", "Release" }
- postbuildcommands {
- "$(SILENT) echo Stripping symbols.",
- "$(SILENT) $(ANDROID_NDK_ARM)/bin/arm-linux-androideabi-strip -s \"$(TARGET)\""
- }
- configuration { "android-mips", "Release" }
- postbuildcommands {
- "$(SILENT) echo Stripping symbols.",
- "$(SILENT) $(ANDROID_NDK_MIPS)/bin/mipsel-linux-android-strip -s \"$(TARGET)\""
- }
- configuration { "android-x86", "Release" }
- postbuildcommands {
- "$(SILENT) echo Stripping symbols.",
- "$(SILENT) $(ANDROID_NDK_X86)/bin/i686-linux-android-strip -s \"$(TARGET)\""
- }
- configuration { "linux-steamlink", "Release" }
- postbuildcommands {
- "$(SILENT) echo Stripping symbols.",
- "$(SILENT) $(MARVELL_SDK_PATH)/toolchain/bin/armv7a-cros-linux-gnueabi-strip -s \"$(TARGET)\""
- }
- configuration { "linux-* or rpi", "not linux-steamlink", "Release" }
- postbuildcommands {
- "$(SILENT) echo Stripping symbols.",
- "$(SILENT) strip -s \"$(TARGET)\""
- }
- configuration { "mingw*", "Release" }
- postbuildcommands {
- "$(SILENT) echo Stripping symbols.",
- "$(SILENT) $(MINGW)/bin/strip -s \"$(TARGET)\""
- }
- configuration { "asmjs" }
- postbuildcommands {
- "$(SILENT) echo Running asmjs finalize.",
- "$(SILENT) \"$(EMSCRIPTEN)/emcc\" -O2 "
- -- .. "-s ALLOW_MEMORY_GROWTH=1 "
- -- .. "-s ASSERTIONS=2 "
- -- .. "-s EMTERPRETIFY=1 "
- -- .. "-s EMTERPRETIFY_ASYNC=1 "
- .. "-s PRECISE_F32=1 "
- .. "-s TOTAL_MEMORY=268435456 "
- -- .. "-s USE_WEBGL2=1 "
- .. "--memory-init-file 1 "
- .. "\"$(TARGET)\" -o \"$(TARGET)\".html "
- -- .. "--preload-file ../../../examples/runtime@/ "
- }
- configuration { "riscv" }
- postbuildcommands {
- "$(SILENT) echo Stripping symbols.",
- "$(SILENT) $(FREEDOM_E_SDK)/toolchain/bin/riscv32-unknown-elf-strip -s \"$(TARGET)\""
- }
- configuration {} -- reset configuration
- end
|