|
From: <eli...@us...> - 2008-08-12 12:53:08
|
Revision: 3111
http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3111&view=rev
Author: elias_naur
Date: 2008-08-12 12:53:03 +0000 (Tue, 12 Aug 2008)
Log Message:
-----------
Use gcc instead of cc for compiling linux natives
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 2008-08-12 11:54:09 UTC (rev 3110)
+++ trunk/LWJGL/platform_build/linux_ant/build.xml 2008-08-12 12:53:03 UTC (rev 3111)
@@ -30,7 +30,7 @@
</condition>
<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">
+ <apply dir="." executable="gcc" dest="." skipemptyfilesets="true" failonerror="true">
<arg line="${cflags} ${cflags_pthread}"/>
<arg value="-I${java.home}/include"/>
<arg value="-I${java.home}/include/linux"/>
@@ -44,7 +44,7 @@
<fileset dir="${native}/generated" includes="*.c"/>
<fileset dir="${native}/common" includes="*.c"/>
</apply>
- <apply dir="." parallel="true" executable="cc" failonerror="true">
+ <apply dir="." parallel="true" executable="gcc" failonerror="true">
<srcfile/>
<arg line="${linker_flags}"/>
<fileset dir="." includes="*.o"/>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|