blob: ce1554c41c30578d65122e882367f722e1a491f3 (
plain)
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
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
This is an example of how to add custom compiler/linker
arguments for a crosscompiler.
You can use such files with setting the property 'gluegen.user.compiler.file', ie:
-Dgluegen.user.compiler.file=`pwd`/lib/gluegen.compiler.xml
or by having such file in your home directory, ie:
~/gluegen.compiler.xml
In case you want to compile for 32bit on a 64bit machine,
you might also need to set the 'os.arch' to 'x86'.
Example: gluegen/make/make.gluegen.all.linux-x86.sh
More properties need to be overwritten in case you like to change the
target OS .. and/or components, see gluegen-cpptasks.xml for more information.
-->
<project name="GlueGen-cpptasks" basedir="." >
<target name="gluegen.cpptasks.configure.compiler" depends="setup.java.home.dir">
<compiler id="compiler.cfg.linux" name="gcc">
<compilerarg value="-m32" />
<compilerarg value="-Wall" />
<defineset>
<define name="LINUX" />
</defineset>
</compiler>
<linker id="linker.cfg.linux" name="gcc">
<linkerarg value="-m32" />
</linker>
</target>
</project>
|