591f121d96f12d4dc04c8f09ca143f86ccbe247b
2 # Copyright (c) 2006, Intel Corporation
3 # All rights reserved. This program and the accompanying materials
4 # are licensed and made available under the terms and conditions of the BSD License
5 # which accompanies this distribution. The full text of the license may be found at
6 # http://opensource.org/licenses/bsd-license.php
8 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
9 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11 # Setup the environment for unix-like systems running a bash-like shell.
12 # This file must be "sourced" not executed. For example: ". edksetup.sh"
14 if [ "$WORKSPACE" == "" ]
16 echo "Please set WORKSPACE before sourcing this script."
18 if [ "$JAVA_HOME" == "" ]
20 echo "Please set JAVA_HOME before sourcing this script."
23 # These should be ok as they are.
24 export ANT_HOME
=$WORKSPACE/Tools
/bin
/apache-ant
25 export XMLBEANS_HOME
=$WORKSPACE/Tools
/bin
/xmlbeans
26 export CLASSPATH
=$WORKSPACE/Tools
/Jars
/SurfaceArea.jar
:$WORKSPACE/Tools
/Jars
/frameworktasks.jar
:$WORKSPACE/Tools
/Jars
/saxon8.jar
:$WORKSPACE/Tools
/Jars
/cpptasks.jar
:$WORKSPACE/Tools
/Jars
/GenBuild.jar
:$XMLBEANS_HOME/lib
/resolver.jar
:$XMLBEANS_HOME/lib
/xbean.jar
:$XMLBEANS_HOME/lib
/xmlpublic.jar
:$XMLBEANS_HOME/lib
/jsr173_1.0_api.jar
:$XMLBEANS_HOME/lib
/saxon8.jar
:$XMLBEANS_HOME/lib
/xbean_xpath.jar
27 export Framework_Tools_Path
=$WORKSPACE/Tools
/bin
28 export PATH
=$Framework_Tools_Path:$ANT_HOME/bin
:$JAVA_HOME/bin
:$PATH
30 # Handle any particulars down here.
33 # Convert paths to windows format.
34 export WORKSPACE
=`cygpath -w $WORKSPACE`
35 export CLASSPATH
=`cygpath -w -p $CLASSPATH`
39 # Now we need to build the tools.
40 echo "If you have not done so, please build the tools by issuing 'ant -f \$WORKSPACE/Tools/build.xml'."