summaryrefslogtreecommitdiff
path: root/xmake/toolchains
diff options
context:
space:
mode:
authorChen Yufei <[email protected]>2022-01-18 14:32:02 +0800
committerChen Yufei <[email protected]>2022-01-18 14:32:02 +0800
commit7d6096cd44414f636e09503e5085f03513c6c01f (patch)
treea729aacef725413aea9041f656b5b64038a8d92c /xmake/toolchains
parent7bb8966df07702ecc5e582f6e371419363cc0e67 (diff)
toolchain: add gcc-4.8 and gcc-4.9
Diffstat (limited to 'xmake/toolchains')
-rw-r--r--xmake/toolchains/gcc-4.8/xmake.lua3
-rw-r--r--xmake/toolchains/gcc-4.9/xmake.lua3
2 files changed, 6 insertions, 0 deletions
diff --git a/xmake/toolchains/gcc-4.8/xmake.lua b/xmake/toolchains/gcc-4.8/xmake.lua
new file mode 100644
index 000000000..6519646b1
--- /dev/null
+++ b/xmake/toolchains/gcc-4.8/xmake.lua
@@ -0,0 +1,3 @@
+includes(path.join(os.scriptdir(), "../gcc/xmake.lua"))
+
+toolchain_gcc("4.8")
diff --git a/xmake/toolchains/gcc-4.9/xmake.lua b/xmake/toolchains/gcc-4.9/xmake.lua
new file mode 100644
index 000000000..4b489fa5d
--- /dev/null
+++ b/xmake/toolchains/gcc-4.9/xmake.lua
@@ -0,0 +1,3 @@
+includes(path.join(os.scriptdir(), "../gcc/xmake.lua"))
+
+toolchain_gcc("4.9")