summaryrefslogtreecommitdiffstats
path: root/autoconf/gcc.lua
diff options
context:
space:
mode:
authorerorcun <erorcunerorcun@hotmail.com.tr>2021-08-15 20:24:20 +0200
committererorcun <erorcunerorcun@hotmail.com.tr>2021-08-16 20:06:52 +0200
commite0ecbeee39e605cf2ee06e3632f4931d03606ce7 (patch)
tree36569421f31878d57a24cc3d279a2831f8173b04 /autoconf/gcc.lua
parentFix impossible bullets & turn speed on heavy guns (diff)
downloadre3-e0ecbeee39e605cf2ee06e3632f4931d03606ce7.tar
re3-e0ecbeee39e605cf2ee06e3632f4931d03606ce7.tar.gz
re3-e0ecbeee39e605cf2ee06e3632f4931d03606ce7.tar.bz2
re3-e0ecbeee39e605cf2ee06e3632f4931d03606ce7.tar.lz
re3-e0ecbeee39e605cf2ee06e3632f4931d03606ce7.tar.xz
re3-e0ecbeee39e605cf2ee06e3632f4931d03606ce7.tar.zst
re3-e0ecbeee39e605cf2ee06e3632f4931d03606ce7.zip
Diffstat (limited to 'autoconf/gcc.lua')
-rw-r--r--autoconf/gcc.lua27
1 files changed, 27 insertions, 0 deletions
diff --git a/autoconf/gcc.lua b/autoconf/gcc.lua
new file mode 100644
index 00000000..34520139
--- /dev/null
+++ b/autoconf/gcc.lua
@@ -0,0 +1,27 @@
+---
+-- Autoconfiguration.
+-- Copyright (c) 2016 Blizzard Entertainment
+---
+local p = premake
+local gcc = p.tools.gcc
+
+function gcc.try_compile(cfg, text, parameters)
+ -- write the text to a temporary file.
+ local cppFile = path.join(cfg.objdir, "temp.cpp")
+ if not io.writefile(cppFile, text) then
+ return nil
+ end
+
+ if parameters == nil then
+ parameters = ""
+ end
+
+ local outFile = path.join(cfg.objdir, "temp.out")
+
+ -- compile that text file.
+ if os.execute('gcc "' .. cppFile .. '" ' .. parameters .. ' -o "' .. outFile ..'" &> /dev/null') then
+ return outFile
+ else
+ return nil
+ end
+end