1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
Description: removing attributes of the cc ant task that are not understood
Author: Pierre Gruet <pgt@debian.org>
Forwarded: not-needed
Last-Update: 2023-04-15
--- a/make/build-jogl.xml
+++ b/make/build-jogl.xml
@@ -1599,8 +1599,6 @@
</targetfiles>
<sequential>
<cc outtype="${output.lib.type}"
- usehighleveltool="true"
- writesoname="true"
objdir="${obj.joglsub}"
outfile="${obj.joglsub}/@{output.lib.name}"
optimize="${c.compiler.optimise}"
@@ -1729,7 +1727,6 @@
</targetfiles>
<sequential>
<cc outtype="${output.lib.type}"
- usehighleveltool="true"
objdir="${obj.joglsub}"
outfile="${obj.jogl}/@{output.lib.name}"
optimize="${c.compiler.optimise}"
--- a/make/build-nativewindow.xml
+++ b/make/build-nativewindow.xml
@@ -940,8 +940,6 @@
</targetfiles>
<sequential>
<cc outtype="${output.lib.type}"
- usehighleveltool="true"
- writesoname="true"
objdir="${obj.nativewindow}"
outfile="${obj.nativewindow}/@{output.lib.name}"
optimize="${c.compiler.optimise}"
--- a/make/build-newt.xml
+++ b/make/build-newt.xml
@@ -989,8 +989,6 @@
</targetfiles>
<sequential>
<cc outtype="${output.lib.type}"
- usehighleveltool="true"
- writesoname="true"
objdir="${obj.newt}"
outfile="${obj.newt}/@{output.lib.name}"
optimize="${c.compiler.optimise}"
|