]> git.proxmox.com Git - mirror_edk2.git/blob - InOsEmuPkg/Unix/build64.sh
Add InOsEmuPkg. Like UnixPkg and Nt32Pkg, but EFI code can be common and does not...
[mirror_edk2.git] / InOsEmuPkg / Unix / build64.sh
1 #!/bin/bash
2 #
3 # Copyright (c) 2008 - 2011, Apple Inc. All rights reserved.<BR>
4 # Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
5 #
6 # This program and the accompanying materials
7 # are licensed and made available under the terms and conditions of the BSD License
8 # which accompanies this distribution. The full text of the license may be found at
9 # http://opensource.org/licenses/bsd-license.php
10 #
11 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13 #
14
15 set -e
16 shopt -s nocasematch
17
18
19 #
20 # Setup workspace if it is not set
21 #
22 if [ -z "$WORKSPACE" ]
23 then
24 echo Initializing workspace
25 if [ ! -e `pwd`/edksetup.sh ]
26 then
27 cd ../..
28 fi
29 # This version is for the tools in the BaseTools project.
30 # this assumes svn pulls have the same root dir
31 # export EDK_TOOLS_PATH=`pwd`/../BaseTools
32 # This version is for the tools source in edk2
33 export EDK_TOOLS_PATH=`pwd`/BaseTools
34 echo $EDK_TOOLS_PATH
35 source edksetup.sh BaseTools
36 else
37 echo Building from: $WORKSPACE
38 fi
39
40 #
41 # Pick a default tool type for a given OS
42 #
43 TARGET_TOOLS=MYTOOLS
44 UNIXPKG_TOOLS=GCC44
45 NETWORK_SUPPORT=
46 COMPILE_BINS=
47 case `uname` in
48 CYGWIN*) echo Cygwin not fully supported yet. ;;
49 Darwin*)
50 Major=$(uname -r | cut -f 1 -d '.')
51 if [[ $Major == 9 ]]
52 then
53 echo UnixPkg requires Snow Leopard or later OS
54 exit 1
55 else
56 TARGET_TOOLS=XCODE32
57 UNIXPKG_TOOLS=XCLANG
58 fi
59 NETWORK_SUPPORT="-D NETWORK_SUPPORT"
60 COMPILE_BINS="-D COMPILE_BINS"
61 ;;
62 Linux*) TARGET_TOOLS=ELFGCC ;;
63
64 esac
65
66 BUILD_ROOT_ARCH=$WORKSPACE/Build/EmuUnixX64/DEBUG_"$UNIXPKG_TOOLS"/X64
67
68 if [[ ! -f `which build` || ! -f `which GenFv` ]];
69 then
70 # build the tools if they don't yet exist. Bin scheme
71 echo Building tools as they are not in the path
72 make -C $WORKSPACE/BaseTools
73 elif [[ ( -f `which build` || -f `which GenFv` ) && ! -d $EDK_TOOLS_PATH/Source/C/bin ]];
74 then
75 # build the tools if they don't yet exist. BinWrapper scheme
76 echo Building tools no $EDK_TOOLS_PATH/Source/C/bin directory
77 make -C $WORKSPACE/BaseTools
78 else
79 echo using prebuilt tools
80 fi
81
82
83 for arg in "$@"
84 do
85 if [[ $arg == run ]]; then
86 case `uname` in
87 Darwin*)
88 #
89 # On Darwin we can't use dlopen, so we have to load the real PE/COFF images.
90 # This .gdbinit script sets a breakpoint that loads symbols for the PE/COFFEE
91 # images that get loaded in SecMain
92 #
93 cp $WORKSPACE/InOsEmuPkg/Unix/.gdbinit $WORKSPACE/Build/EmuUnixX64/DEBUG_"$UNIXPKG_TOOLS"/X64
94 ;;
95 esac
96
97 /usr/bin/gdb $BUILD_ROOT_ARCH/SecMain -q -cd=$BUILD_ROOT_ARCH
98 exit
99 fi
100
101 if [[ $arg == cleanall ]]; then
102 make -C $WORKSPACE/BaseTools clean
103 build -p $WORKSPACE/InOsEmuPkg/Unix/UnixX64.dsc -a X64 -t $TARGET_TOOLS -D SEC_ONLY -n 3 clean
104 build -p $WORKSPACE/InOsEmuPkg/Unix/UnixX64.dsc -a X64 -t $UNIXPKG_TOOLS -n 3 clean
105 build -p $WORKSPACE/ShellPkg/ShellPkg.dsc -a X64 -t $UNIXPKG_TOOLS -n 3 clean
106 exit $?
107 fi
108
109 if [[ $arg == clean ]]; then
110 build -p $WORKSPACE/InOsEmuPkg/Unix/UnixX64.dsc -a X64 -t $TARGET_TOOLS -D SEC_ONLY -n 3 clean
111 build -p $WORKSPACE/InOsEmuPkg/Unix/UnixX64.dsc -a X64 -t $UNIXPKG_TOOLS -n 3 clean
112 exit $?
113 fi
114
115 if [[ $arg == shell ]]; then
116 build -p $WORKSPACE/ShellPkg/ShellPkg.dsc -a X64 -t $UNIXPKG_TOOLS -n 3 $2 $3 $4 $5 $6 $7 $8
117 cp Build/Shell/DEBUG_$UNIXPKG_TOOLS/X64/Shell.efi ShellBinPkg/UefiShell/X64/Shell.efi
118 exit $?
119 fi
120 done
121
122
123 #
124 # Build the edk2 UnixPkg
125 #
126 echo $PATH
127 echo `which build`
128 build -p $WORKSPACE/InOsEmuPkg/Unix/UnixX64.dsc -a X64 -t $TARGET_TOOLS -D SEC_ONLY -n 3 $1 $2 $3 $4 $5 $6 $7 $8 modules
129 build -p $WORKSPACE/InOsEmuPkg/Unix/UnixX64.dsc -a X64 -t $UNIXPKG_TOOLS $NETWORK_SUPPORT -n 3 $1 $2 $3 $4 $5 $6 $7 $8
130 cp $WORKSPACE/Build/EmuUnixX64/DEBUG_"$TARGET_TOOLS"/X64/SecMain $WORKSPACE/Build/EmuUnixX64/DEBUG_"$UNIXPKG_TOOLS"/X64
131 exit $?
132