summaryrefslogtreecommitdiff
path: root/autoconf/clang.lua
diff options
context:
space:
mode:
authorerorcun <erorcunerorcun@hotmail.com.tr>2021-08-15 21:24:20 +0300
committererorcun <erorcunerorcun@hotmail.com.tr>2021-08-16 15:20:40 +0300
commit4e40c6f2ed74776b1e46d368199e10c7dc18c7b8 (patch)
treed8e6c017db17e6f1f39540d66580078af0fea2bb /autoconf/clang.lua
parent9deabc7b602e8c57b76ea9971aa61d6e7a0f2d0f (diff)
Auto-detect X11 dependency
Diffstat (limited to 'autoconf/clang.lua')
-rw-r--r--autoconf/clang.lua27
1 files changed, 27 insertions, 0 deletions
diff --git a/autoconf/clang.lua b/autoconf/clang.lua
new file mode 100644
index 00000000..fdb5f405
--- /dev/null
+++ b/autoconf/clang.lua
@@ -0,0 +1,27 @@
+---
+-- Autoconfiguration.
+-- Copyright (c) 2016 Blizzard Entertainment
+---
+local p = premake
+local clang = p.tools.clang
+
+function clang.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('clang "' .. cppFile .. '" ' .. parameters .. ' -o "' .. outFile ..'" &> /dev/null') then
+ return outFile
+ else
+ return nil
+ end
+end