aboutsummaryrefslogtreecommitdiffstats
path: root/make/build.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2019-06-17 03:14:24 +0200
committerSven Gothel <[email protected]>2019-06-17 03:14:24 +0200
commit97622eb70b1ff720d91d768768b7a996ac01ad78 (patch)
tree247b648bcdffc99277eac03b76580c6ef482ffba /make/build.xml
parent2a8c4d1cfa45794bc27358f3379f8c5bece74537 (diff)
Update cpptask.jar to commit 757192655df20cc6a68affe8cbb4d7de387c9c67
Added CC Task Option: 'usehighleveltool' to give user option to prefer the high-level tool like gcc or clang for static linkage where usually 'ar' is being used.
Diffstat (limited to 'make/build.xml')
-rw-r--r--make/build.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/make/build.xml b/make/build.xml
index 79ec607..2b5c687 100644
--- a/make/build.xml
+++ b/make/build.xml
@@ -469,7 +469,8 @@
<echo message="Compiling ${c.compiler.src.files.os} ${c.compiler.src.files.common}" />
<echo message="user.dir=${user.dir}" />
- <cc outtype="shared"
+ <cc outtype="${output.lib.type}"
+ usehighleveltool="true"
objdir="${gluegen.lib.dir}"
outfile="${gluegen.lib.dir}/${output.lib.name}"
optimize="${c.compiler.optimise}"