|
[Java-game-lib-cvs] SF.net SVN: java-game-lib: [2454]
trunk/LWJGL/platform_build/linux_ant/build.xml
From: <eli...@us...> - 2006-07-07 14:02:19
|
Revision: 2454 Author: elias_naur Date: 2006-07-07 07:02:13 -0700 (Fri, 07 Jul 2006) ViewCVS: http://svn.sourceforge.net/java-game-lib/?rev=2454&view=rev Log Message: ----------- Linux: Support x86_64 building Modified Paths: -------------- trunk/LWJGL/platform_build/linux_ant/build.xml Modified: trunk/LWJGL/platform_build/linux_ant/build.xml =================================================================== --- trunk/LWJGL/platform_build/linux_ant/build.xml 2006-07-07 12:41:36 UTC (rev 2453) +++ trunk/LWJGL/platform_build/linux_ant/build.xml 2006-07-07 14:02:13 UTC (rev 2454) @@ -3,9 +3,9 @@ <project name="lwjgl native code, linux" basedir="../../bin" default="compile"> <property name="native" location="../src/native"/> <property name="libname" value="liblwjgl.so"/> - <property name="libs" value="-L/usr/X11R6/lib -L/usr/X11/lib -lm -lX11 -lXext -lpthread -L${java.home}/lib/i386 -ljawt -Wl,-static,-lXxf86vm,-lXcursor,-lXrender,-lXrandr,-lXfixes,-call_shared"/> + <property name="libs32" value="-L/usr/X11R6/lib -L/usr/X11/lib -lm -lX11 -lXext -lpthread -L${java.home}/lib/i386 -ljawt -Wl,-static,-lXxf86vm,-lXcursor,-lXrender,-lXrandr,-lXfixes,-call_shared"/> + <property name="libs64" value="-L/usr/X11R6/lib64 -L/usr/X11/lib64 -lm -lX11 -lXext -lpthread -L${java.home}/lib/amd64 -ljawt -Wl,-static,-lXxf86vm,-lXcursor,-lXrender,-lXrandr,-lXfixes,-call_shared"/> <property name="cflags" value="-O2 -Wall -c -fPIC -std=c99 -pthread"/> - <property name="linker_flags" value="-Wl,--version-script=${native}/linux/lwjgl.map -shared -O2 -Wall -o ${libname} ${libs}"/> <target name="clean"> <delete> @@ -15,6 +15,15 @@ </target> <target name="compile"> + <exec executable="uname" outputproperty="hwplatform"> + <arg value="-i"/> + </exec> + <echo message="${hwplatform}"/> + <condition property="libs" value="${libs64}" else="${libs32}"> + <equals arg1="${hwplatform}" arg2="x86_64"/> + </condition> + <echo message="${libs}"/> + <property name="linker_flags" value="-Wl,--version-script=${native}/linux/lwjgl.map -shared -O2 -Wall -o ${libname} ${libs}"/> <apply dir="." executable="cc" dest="." skipemptyfilesets="true" failonerror="true"> <arg line="${cflags}"/> <arg value="-I${java.home}/include"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
|
[Java-game-lib-cvs] SF.net SVN: java-game-lib: [2455]
trunk/LWJGL/platform_build/linux_ant/build.xml
From: <eli...@us...> - 2006-07-07 14:48:44
|
Revision: 2455 Author: elias_naur Date: 2006-07-07 07:05:06 -0700 (Fri, 07 Jul 2006) ViewCVS: http://svn.sourceforge.net/java-game-lib/?rev=2455&view=rev Log Message: ----------- Linux: Remove debug echos from build.xml Modified Paths: -------------- trunk/LWJGL/platform_build/linux_ant/build.xml Modified: trunk/LWJGL/platform_build/linux_ant/build.xml =================================================================== --- trunk/LWJGL/platform_build/linux_ant/build.xml 2006-07-07 14:02:13 UTC (rev 2454) +++ trunk/LWJGL/platform_build/linux_ant/build.xml 2006-07-07 14:05:06 UTC (rev 2455) @@ -18,11 +18,9 @@ <exec executable="uname" outputproperty="hwplatform"> <arg value="-i"/> </exec> - <echo message="${hwplatform}"/> <condition property="libs" value="${libs64}" else="${libs32}"> <equals arg1="${hwplatform}" arg2="x86_64"/> </condition> - <echo message="${libs}"/> <property name="linker_flags" value="-Wl,--version-script=${native}/linux/lwjgl.map -shared -O2 -Wall -o ${libname} ${libs}"/> <apply dir="." executable="cc" dest="." skipemptyfilesets="true" failonerror="true"> <arg line="${cflags}"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
|
[Java-game-lib-cvs] SF.net SVN: java-game-lib: [2469]
trunk/LWJGL/platform_build/linux_ant/build.xml
From: <eli...@us...> - 2006-07-11 12:22:47
|
Revision: 2469 Author: elias_naur Date: 2006-07-11 05:22:14 -0700 (Tue, 11 Jul 2006) ViewCVS: http://svn.sourceforge.net/java-game-lib/?rev=2469&view=rev Log Message: ----------- Linux: don't use static linking for 64 bit builds Modified Paths: -------------- trunk/LWJGL/platform_build/linux_ant/build.xml Modified: trunk/LWJGL/platform_build/linux_ant/build.xml =================================================================== --- trunk/LWJGL/platform_build/linux_ant/build.xml 2006-07-10 22:26:39 UTC (rev 2468) +++ trunk/LWJGL/platform_build/linux_ant/build.xml 2006-07-11 12:22:14 UTC (rev 2469) @@ -4,7 +4,7 @@ <property name="native" location="../src/native"/> <property name="libname" value="liblwjgl.so"/> <property name="libs32" value="-L/usr/X11R6/lib -L/usr/X11/lib -lm -lX11 -lXext -lpthread -L${java.home}/lib/i386 -ljawt -Wl,-static,-lXxf86vm,-lXcursor,-lXrender,-lXrandr,-lXfixes,-call_shared"/> - <property name="libs64" value="-L/usr/X11R6/lib64 -L/usr/X11/lib64 -lm -lX11 -lXext -lpthread -L${java.home}/lib/amd64 -ljawt -Wl,-static,-lXxf86vm,-lXcursor,-lXrender,-lXrandr,-lXfixes,-call_shared"/> + <property name="libs64" value="-L/usr/X11R6/lib64 -L/usr/X11/lib64 -lm -lX11 -lXext -lpthread -L${java.home}/lib/amd64 -ljawt -lXxf86vm -lXcursor -lXrender -lXrandr -lXfixes"/> <property name="cflags" value="-O2 -Wall -c -fPIC -std=c99 -pthread"/> <target name="clean"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
|
[Java-game-lib-cvs] SF.net SVN: java-game-lib: [2481]
trunk/LWJGL/platform_build/linux_ant/build.xml
From: <eli...@us...> - 2006-07-11 20:56:46
|
Revision: 2481 Author: elias_naur Date: 2006-07-11 13:56:40 -0700 (Tue, 11 Jul 2006) ViewCVS: http://svn.sourceforge.net/java-game-lib/?rev=2481&view=rev Log Message: ----------- Linux: more 64 bit stuff Modified Paths: -------------- trunk/LWJGL/platform_build/linux_ant/build.xml Modified: trunk/LWJGL/platform_build/linux_ant/build.xml =================================================================== --- trunk/LWJGL/platform_build/linux_ant/build.xml 2006-07-11 20:49:28 UTC (rev 2480) +++ trunk/LWJGL/platform_build/linux_ant/build.xml 2006-07-11 20:56:40 UTC (rev 2481) @@ -11,7 +11,7 @@ <target name="clean"> <delete> <fileset dir="." includes="*.o"/> - <fileset file="${libname}"/> + <fileset dir="." includes="*.so"/> </delete> </target> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
|
[Java-game-lib-cvs] SF.net SVN: java-game-lib: [2489]
trunk/LWJGL/platform_build/linux_ant/build.xml
From: <ma...@us...> - 2006-07-11 21:46:50
|
Revision: 2489 Author: matzon Date: 2006-07-11 14:46:44 -0700 (Tue, 11 Jul 2006) ViewCVS: http://svn.sourceforge.net/java-game-lib/?rev=2489&view=rev Log Message: ----------- build natives into bin/<name> Modified Paths: -------------- trunk/LWJGL/platform_build/linux_ant/build.xml Modified: trunk/LWJGL/platform_build/linux_ant/build.xml =================================================================== --- trunk/LWJGL/platform_build/linux_ant/build.xml 2006-07-11 21:45:33 UTC (rev 2488) +++ trunk/LWJGL/platform_build/linux_ant/build.xml 2006-07-11 21:46:44 UTC (rev 2489) @@ -1,7 +1,7 @@ <?xml version="1.0"?> -<project name="lwjgl native code, linux" basedir="../../bin" default="compile"> - <property name="native" location="../src/native"/> +<project name="lwjgl native code, linux" basedir="../../bin/lwjgl" default="compile"> + <property name="native" location="../../src/native"/> <property name="libname32" value="liblwjgl.so"/> <property name="libname64" value="liblwjgl64.so"/> <property name="libs32" value="-L/usr/X11R6/lib -L/usr/X11/lib -lm -lX11 -lXext -lpthread -L${java.home}/lib/i386 -ljawt -Wl,-static,-lXxf86vm,-lXcursor,-lXrender,-lXrandr,-lXfixes,-call_shared"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |