2006-04-24 18:38:10 +02:00
|
|
|
#
|
2008-02-12 23:27:42 +01:00
|
|
|
# Copyright (c) 2006 - 2008, Intel Corporation
|
2006-04-24 18:38:10 +02:00
|
|
|
# All rights reserved. This program and the accompanying materials
|
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
|
|
#
|
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2009-07-08 07:54:53 +02:00
|
|
|
#
|
|
|
|
# In *inux environment, the build tools's source is required and need to be compiled
|
|
|
|
# firstly, please reference https://edk2.tianocore.org/unix-getting-started.html to
|
|
|
|
# to get how to setup build tool.
|
|
|
|
#
|
|
|
|
# After build tool is downloaded and compiled, a soft symbol linker need to be created
|
|
|
|
# at <workspace>/Conf. For example: ln -s /work/BaseTools /work/edk2/Conf/BaseToolsSource.
|
|
|
|
#
|
2006-04-24 18:38:10 +02:00
|
|
|
# Setup the environment for unix-like systems running a bash-like shell.
|
2006-11-14 18:57:07 +01:00
|
|
|
# This file must be "sourced" not merely executed. For example: ". edksetup.sh"
|
2009-07-08 07:54:53 +02:00
|
|
|
#
|
2006-11-14 18:57:07 +01:00
|
|
|
# CYGWIN users: Your path and filename related environment variables should be
|
|
|
|
# set up in the unix style. This script will make the necessary conversions to
|
|
|
|
# windows style.
|
2009-07-08 07:54:53 +02:00
|
|
|
#
|
|
|
|
# Please reference edk2 user manual for more detail descriptions at https://edk2.tianocore.org/files/documents/64/494/EDKII_UserManual.pdf
|
|
|
|
#
|
2006-04-24 18:38:10 +02:00
|
|
|
|
2007-10-16 22:52:46 +02:00
|
|
|
if [ \
|
2008-02-12 23:27:42 +01:00
|
|
|
-z "$1" -o \
|
2007-10-16 22:52:46 +02:00
|
|
|
"$1" = "-?" -o \
|
|
|
|
"$1" = "-h" -o \
|
|
|
|
"$1" = "--help" \
|
|
|
|
]
|
2006-05-25 00:03:09 +02:00
|
|
|
then
|
2008-12-31 17:57:24 +01:00
|
|
|
echo BaseTools Usage: \'. edksetup.sh\'
|
2007-10-16 22:52:46 +02:00
|
|
|
echo
|
|
|
|
echo Please note: This script must be \'sourced\' so the environment can be changed.
|
|
|
|
echo \(Either \'. edksetup.sh\' or \'source edksetup.sh\'\)
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2008-12-31 17:57:24 +01:00
|
|
|
if [ -z "$WORKSPACE" ]
|
2006-07-09 19:33:16 +02:00
|
|
|
then
|
2008-12-31 17:57:24 +01:00
|
|
|
. BaseTools/BuildEnv $*
|
2006-05-25 00:03:09 +02:00
|
|
|
else
|
2008-12-31 17:57:24 +01:00
|
|
|
. $WORKSPACE/BaseTools/BuildEnv $*
|
2007-10-16 22:52:46 +02:00
|
|
|
fi
|
2006-04-24 18:38:10 +02:00
|
|
|
|
|
|
|
|