Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Aperi/build/linux"

(Reformatted page so I can add info on building in Eclipse)
Line 1: Line 1:
Start with "Aperi Development Environment.doc"
+
== General Tasks ==
Then these additional steps to get Aperi building on Linux -
+
  
Create a Linux aperi build user,
+
# Follow the instructions in "Aperi Development Environment.doc"
    username: aperi
+
# Create a Linux aperi build user:<br>username: aperi<br>password: aperi<br>home directory:  /home/aperi<br>
    password: aperi
+
#Install apache-ant-1.7.0 in Aperi-Dev/BuildTools
    home directory:  /home/aperi
+
#Download [http://prdownloads.sourceforge.net/jsch/jsch-0.1.31.jar?download jsch-0.1.31.jar] to "Aperi-Dev/BuildTools/apache-ant-1.7.0/lib/jsch-0.1.31.jar"
 +
# Verify you have SSH access to localhost<br><code>ssh aperi@localhost</code>
 +
# Make a symbolic link from "/usr/lib/jvm/jdk1.5.0" to the Sun JDK.
  
Install apache-ant-1.7.0 in Aperi-Dev/BuildTools
+
== Command line build ==
Download
+
    http://prdownloads.sourceforge.net/jsch/jsch-0.1.31.jar?download
+
into
+
    Aperi-Dev/BuildTools/apache-ant-1.7.0/lib/jsch-0.1.31.jar
+
  
Verify you have SSH access to localhost
+
# Start the Linux build:<code><br>cd Aperi-Dev/Code/Aperi<br>source build_env.sh<br>ant compile_linux<br></code>
    ssh aperi@localhost
+
 
+
Start the Linux build
+
    cd Aperi-Dev/Code/Aperi
+
    source build_env.sh  
+
    ant compile_linux
+
  
 
ANT copies files to the aperi build user's directory and starts the build.
 
ANT copies files to the aperi build user's directory and starts the build.
 
TODO: figure out build dependencies on /opt/java1.4
 
that seems to be an artefact of LINUX_HOST=jynx.storage.sanjose.ibm.com
 

Revision as of 19:27, 13 March 2007

General Tasks

  1. Follow the instructions in "Aperi Development Environment.doc"
  2. Create a Linux aperi build user:
    username: aperi
    password: aperi
    home directory: /home/aperi
  3. Install apache-ant-1.7.0 in Aperi-Dev/BuildTools
  4. Download jsch-0.1.31.jar to "Aperi-Dev/BuildTools/apache-ant-1.7.0/lib/jsch-0.1.31.jar"
  5. Verify you have SSH access to localhost
    ssh aperi@localhost
  6. Make a symbolic link from "/usr/lib/jvm/jdk1.5.0" to the Sun JDK.

Command line build

  1. Start the Linux build:
    cd Aperi-Dev/Code/Aperi
    source build_env.sh
    ant compile_linux

ANT copies files to the aperi build user's directory and starts the build.

Back to the top