From c013d1ecba88c4723c0379cd84c32de8adab65d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Sun, 13 Nov 2022 19:32:47 -0800 Subject: [PATCH] Cleanup. --- scripts/toolchain.lua | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua index 052106b..a4f6f83 100644 --- a/scripts/toolchain.lua +++ b/scripts/toolchain.lua @@ -73,7 +73,6 @@ function toolchain(_buildDir, _libDir) { "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)" }, @@ -288,12 +287,6 @@ function toolchain(_buildDir, _libDir) 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++" @@ -661,19 +654,6 @@ function toolchain(_buildDir, _libDir) configuration { "linux-*" } includedirs { path.join(bxDir, "include/compat/linux") } - 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",