OSDN Git Service

Package the 2 llvm-rs-cc versions in the Windows SDK.
[android-x86/development.git] / build / tools / patch_windows_sdk.sh
1 #!/bin/bash
2
3 # This script takes a Linux SDK, cleans it and injects the necessary Windows
4 # binaries needed by the SDK. The script has 2 parts:
5 # - development/tools/build/path_windows_sdk.sh to process the
6 #   platform-dependent folders and files.
7 # - sdk/build/patch_windows_sdk.sh to process folder and files which
8 #   depend on the sdk.git repo. This file is invoked by the makefile
9 #   at development/build/tools/windows_sdk.mk.
10 #
11 # Input arguments:
12 # -q = Optional arg to make this silent. Must be given first.
13 # $1 = Temporary SDK directory, that is the Linux SDK being patched into
14 #      a Windows one.
15 # $2 = The out/host/windows directory, which contains the new Windows
16 #      binaries to use.
17 # $3 = An optional replacement for $TOPDIR (inherited from the Android
18 #      build system), which is the top directory where Android is located.
19
20 set -e # any error stops the build
21
22 # Verbose by default. Use -q to make more silent.
23 V=""
24 Q=""
25 if [[ "$1" == "-q" ]]; then
26     Q="$1"
27     shift
28 else
29   echo "Win SDK: $0 $*"
30   set -x # show bash commands; no need for V=-v
31 fi
32
33 TEMP_SDK_DIR=$1
34 WIN_OUT_DIR=$2
35 TOPDIR=${TOPDIR:-$3}
36
37 # The unix2dos is provided by the APT package "tofrodos". However
38 # as for ubuntu lucid, the package renamed the command to "todos".
39 UNIX2DOS=$(which unix2dos || true)
40 if [[ ! -x $UNIX2DOS ]]; then
41   UNIX2DOS=$(which todos || true)
42 fi
43
44 PLATFORMS=( $TEMP_SDK_DIR/platforms/* )
45 if [[ ${#PLATFORMS[@]} != 1 ]]; then
46     echo "Error: Too many platforms found in $TEMP_SDK_DIR"
47     echo "Expected one. Instead, found: ${PLATFORMS[@]}"
48     exit 1
49 fi
50
51 # Package USB Driver
52 if [[ -n "$USB_DRIVER_HOOK" ]]; then
53     $USB_DRIVER_HOOK $V $TEMP_SDK_DIR $TOPDIR
54 fi
55
56 # Remove obsolete stuff from tools & platform
57 TOOLS=$TEMP_SDK_DIR/tools
58 PLATFORM_TOOLS=$TEMP_SDK_DIR/platform-tools
59 LIB=$TEMP_SDK_DIR/tools/lib
60 rm $V $TOOLS/{dmtracedump,etc1tool,hprof-conv,sqlite3,zipalign}
61 rm $V $LIB/*/swt.jar
62 rm $V $PLATFORM_TOOLS/{adb,aapt,aidl,dx,dexdump,llvm-rs-cc,llvm-rs-cc-2}
63
64 # Copy all the new stuff in tools
65 # Note: some tools are first copied here and then moved in platform-tools
66 cp $V $WIN_OUT_DIR/host/windows-x86/bin/*.{exe,dll} $TOOLS/
67 # Remove some tools we don't want to take in the SDK
68 rm $V -f $TOOLS/{fastboot.exe,rs-spec-gen.exe,tblgen.exe}
69 mkdir -pv $LIB/x86
70 cp $V ${TOPDIR}prebuilt/windows/swt/swt.jar         $LIB/x86/
71 mkdir -pv $LIB/x86_64
72 cp $V ${TOPDIR}prebuilt/windows-x86_64/swt/swt.jar  $LIB/x86_64/
73
74 # Put the JetCreator tools, content and docs (not available in the linux SDK)
75 JET=$TOOLS/Jet
76 JETCREATOR=$JET/JetCreator
77 JETDEMOCONTENT=$JET/demo_content
78 JETLOGICTEMPLATES=$JET/logic_templates
79 JETDOC=$TEMP_SDK_DIR/docs/JetCreator
80
81 # need to rm these folders since a Mac SDK will have them and it might create a conflict
82 rm -rf $V $JET
83 rm -rf $V $JETDOC
84
85 # now create fresh folders for JetCreator
86 mkdir $V $JET
87 mkdir $V $JETDOC
88
89 cp -r $V ${TOPDIR}external/sonivox/jet_tools/JetCreator         $JETCREATOR/
90 cp -r $V ${TOPDIR}external/sonivox/jet_tools/JetCreator_content $JETDEMOCONTENT/
91 cp -r $V ${TOPDIR}external/sonivox/jet_tools/logic_templates    $JETLOGICTEMPLATES/
92 chmod $V -R u+w $JETCREATOR  # fixes an issue where Cygwin might copy the above as u+rx only
93 cp $V ${TOPDIR}prebuilt/windows/jetcreator/EASDLL.dll           $JETCREATOR/
94
95 cp    $V ${TOPDIR}external/sonivox/docs/JET_Authoring_Guidelines.html  $JETDOC/
96 cp -r $V ${TOPDIR}external/sonivox/docs/JET_Authoring_Guidelines_files $JETDOC/
97 cp    $V ${TOPDIR}external/sonivox/docs/JET_Creator_User_Manual.html   $JETDOC/
98 cp -r $V ${TOPDIR}external/sonivox/docs/JET_Creator_User_Manual_files  $JETDOC/
99
100 # Copy or move platform specific tools to the default platform.
101 cp $V ${TOPDIR}dalvik/dx/etc/dx.bat $PLATFORM_TOOLS/
102 mv $V $TOOLS/{adb.exe,aapt.exe,aidl.exe,dexdump.exe} $PLATFORM_TOOLS/
103 mv $V $TOOLS/Adb*.dll $PLATFORM_TOOLS/
104 # The platform actually produces llvm-rs-cc-2 (via sdk.atree), whereas
105 # the original version 1 (just named llvm-rs-cc) is stored in the prebuilts.
106 cp $V ${TOPDIR}prebuilt/windows/llvm-rs-cc/llvm-rs-cc.exe $PLATFORM_TOOLS/llvm-rs-cc.exe
107 mv $V $TOOLS/llvm-rs-cc.exe                               $PLATFORM_TOOLS/llvm-rs-cc-2.exe
108
109 # Fix EOL chars to make window users happy - fix all files at the top level
110 # as well as all batch files including those in platform-tools/
111 if [[ -x $UNIX2DOS ]]; then
112   find $TEMP_SDK_DIR -maxdepth 1 -name "*.[ht]*" -type f -print0 | xargs -0 $UNIX2DOS
113   find $TEMP_SDK_DIR -maxdepth 3 -name "*.bat"   -type f -print0 | xargs -0 $UNIX2DOS
114 fi
115
116 # Just to make it easier on the build servers, we want fastboot and adb
117 # (and its DLLs) next to the new SDK.
118 for i in fastboot.exe adb.exe AdbWinApi.dll AdbWinUsbApi.dll; do
119     cp -f $V $WIN_OUT_DIR/host/windows-x86/bin/$i $TEMP_SDK_DIR/../$i
120 done
121