summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/toolchain.lua
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-02-26 12:57:31 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-02-26 12:57:31 +0100
commitf79e31489758026c37058b16fa9c968fbf35a8a1 (patch)
treea6bcd41ec1cc6d13ce41b659a0813289a502645f /scripts/toolchain.lua
parent593b07941f782412513ced0f9d32cfa815d2cd4d (diff)
no way to support qnx (nw)
Diffstat (limited to 'scripts/toolchain.lua')
-rw-r--r--scripts/toolchain.lua17
1 files changed, 0 insertions, 17 deletions
diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua
index bef105b4cbe..64650af1802 100644
--- a/scripts/toolchain.lua
+++ b/scripts/toolchain.lua
@@ -32,7 +32,6 @@ newoption {
{ "osx", "OSX (GCC compiler)" },
{ "osx-clang", "OSX (Clang compiler)" },
{ "pnacl", "Native Client - PNaCl" },
- { "qnx-arm", "QNX/Blackberry - ARM" },
{ "rpi", "RaspberryPi" },
{ "solaris", "Solaris" },
{ "steamlink", "Steam Link" },
@@ -289,18 +288,6 @@ function toolchain(_buildDir, _subDir)
location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-pnacl")
end
- if "qnx-arm" == _OPTIONS["gcc"] then
-
- if not os.getenv("QNX_HOST") then
- print("Set QNX_HOST enviroment variables.")
- end
-
- premake.gcc.cc = "$(QNX_HOST)/usr/bin/arm-unknown-nto-qnx8.0.0eabi-gcc"
- premake.gcc.cxx = "$(QNX_HOST)/usr/bin/arm-unknown-nto-qnx8.0.0eabi-g++"
- premake.gcc.ar = "$(QNX_HOST)/usr/bin/arm-unknown-nto-qnx8.0.0eabi-ar"
- location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-qnx-arm")
- end
-
if "rpi" == _OPTIONS["gcc"] then
location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-rpi")
end
@@ -829,10 +816,6 @@ function toolchain(_buildDir, _subDir)
targetdir (_buildDir .. "ios-simulator" .. "/bin")
objdir (_buildDir .. "ios-simulator" .. "/obj")
- configuration { "qnx-arm" }
- targetdir (_buildDir .. "qnx-arm" .. "/bin")
- objdir (_buildDir .. "qnx-arm" .. "/obj")
-
configuration { "rpi" }
targetdir (_buildDir .. "rpi" .. "/bin")
objdir (_buildDir .. "rpi" .. "/obj")