From ceb3c83d6757f690d7eb5a623b4d41901b951483 Mon Sep 17 00:00:00 2001 From: Jason Perkins Date: Mon, 8 Dec 2014 16:04:41 -0500 Subject: [PATCH] Remove outdated PS3 support I will be bringing this back shortly, in a more complete form --- src/_premake_init.lua | 9 --------- src/actions/vstudio/vs200x_vcproj.lua | 2 +- src/tools/gcc.lua | 5 ----- tests/tools/test_gcc.lua | 8 -------- 4 files changed, 1 insertion(+), 23 deletions(-) diff --git a/src/_premake_init.lua b/src/_premake_init.lua index f8c36079..24e4cfe1 100644 --- a/src/_premake_init.lua +++ b/src/_premake_init.lua @@ -678,7 +678,6 @@ "haiku", "linux", "macosx", - "ps3", "solaris", "wii", "windows", @@ -1051,11 +1050,3 @@ targetprefix "" targetextension ".dll" implibextension ".dll" - - -- PS3 configurations - - filter { "system:PS3" } - toolset "snc" - - filter { "system:PS3", "kind:ConsoleApp" } - targetextension ".elf" diff --git a/src/actions/vstudio/vs200x_vcproj.lua b/src/actions/vstudio/vs200x_vcproj.lua index 33ef8948..660198f3 100644 --- a/src/actions/vstudio/vs200x_vcproj.lua +++ b/src/actions/vstudio/vs200x_vcproj.lua @@ -1581,7 +1581,7 @@ if file then if prj.pchsource == file.abspath and not prj.flags.NoPCH and - prj.system ~= p.PS3 + prj.system == p.WINDOWS then p.w('UsePrecompiledHeader="1"') end diff --git a/src/tools/gcc.lua b/src/tools/gcc.lua index 41eb74e0..4142ca8f 100644 --- a/src/tools/gcc.lua +++ b/src/tools/gcc.lua @@ -285,11 +285,6 @@ -- gcc.tools = { - ps3 = { - cc = "ppu-lv2-g++", - cxx = "ppu-lv2-g++", - ar = "ppu-lv2-ar", - }, } function gcc.gettoolname(cfg, tool) diff --git a/tests/tools/test_gcc.lua b/tests/tools/test_gcc.lua index 57c0d06d..ed56af9b 100644 --- a/tests/tools/test_gcc.lua +++ b/tests/tools/test_gcc.lua @@ -38,14 +38,6 @@ test.isequal("windres", gcc.gettoolname(cfg, "rc")) end - function suite.tools_onPS3() - system "PS3" - prepare() - test.isequal("ppu-lv2-g++", gcc.gettoolname(cfg, "cc")) - test.isequal("ppu-lv2-g++", gcc.gettoolname(cfg, "cxx")) - test.isequal("ppu-lv2-ar", gcc.gettoolname(cfg, "ar")) - end - -- -- By default, the -MMD -MP are used to generate dependencies.