diff options
author | Kevin Rushforth <[email protected]> | 2004-10-22 22:18:16 +0000 |
---|---|---|
committer | Kevin Rushforth <[email protected]> | 2004-10-22 22:18:16 +0000 |
commit | 94b66b7ef4035c453b66a0a80e60c2afbaf310d5 (patch) | |
tree | eefeb6c84818390705ce489c104dd79996beada1 /src/native/share | |
parent | e59b32556030f7264798076f12d3a912317cae7e (diff) |
1. Fixed Issue 80 : libj3dcore-ogl.so fails to load on Linux systems without certain GL extensions
2. Added missing file (src/native/share/build-linux-amd64.xml) to CVS repository for amd64 build.
git-svn-id: https://svn.java.net/svn/j3d-core~svn/trunk@61 ba19aa83-45c5-6ac9-afd3-db810772062c
Diffstat (limited to 'src/native/share')
-rw-r--r-- | src/native/share/build-linux-amd64.xml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/src/native/share/build-linux-amd64.xml b/src/native/share/build-linux-amd64.xml new file mode 100644 index 0000000..fd6566c --- /dev/null +++ b/src/native/share/build-linux-amd64.xml @@ -0,0 +1,54 @@ +<?xml version="1.0"?> + +<!-- +/* + * $RCSfile$ + * + * Copyright (c) 2004 Sun Microsystems, Inc. All rights reserved. + * + * Use is subject to license terms. + * + * $Revision$ + * $Date$ + * $State$ + */ + --> + +<!-- Ant file for building native utilities files for Linux --> +<project name="Java 3D" default="compile"> + + <target name="compile"> + + <echo message="Executing 64 bit native utilities build [${bldType}]"/> + + <!-- Create the build directories linux --> + <mkdir dir="${build}/${platform}/${bldType}/native/share/objs"/> + <mkdir dir="${build}/${platform}/${bldType}/lib/amd64"/> + + <!-- Compile the c source files--> + <exec dir="${build}/${platform}/${bldType}/native/share/objs" executable="gcc"> + <arg line="-m64 -I/include -I${java.home}/../include -I${java.home}/../include/linux -I/usr/openwin/include -I${javahUtilsTarget} -${bldFlag} -DLINUX -c ${core_utils_src}/native/share/J3DTimer.c"/> + </exec> + + <!-- Create the library file--> + <exec dir="${build}/${platform}/${bldType}/native/share/objs" executable="ld"> + <arg line="J3DTimer.o -G -z lazyload -lc -o libj3dutils.so"/> + </exec> + + <!-- Copy the copyright library file --> + <copy file="${build}/${platform}/${bldType}/native/share/objs/libj3dutils.so" + todir="${build}/${platform}/${bldType}/lib/amd64"/> + + </target> + + <target name="dist"> + <!-- Create the distribution directory --> + <mkdir dir="${dist}/${platform}/lib/amd64"/> + + <!-- Copy the library files --> + <copy file="${build}/${platform}/opt/lib/amd64/libj3dutils.so" + todir="${dist}/${platform}/lib/amd64"/> + </target> + + +</project> |