Home | History | Annotate | Download | only in tools

Lines Matching full:echo

74     echo "unknown option '$opt', use --help"
80 echo "Usage: make-release.sh [options]"
81 echo ""
82 echo "Package a new set of release packages for the Android NDK."
83 echo ""
84 echo "You will need to have generated one or more prebuilt toolchain tarballs"
85 echo "with the build/tools/build-toolchain.sh script. These files should be"
86 echo "named like <prefix>-<system>.tar.bz2, where <prefix> is an arbitrary"
87 echo "prefix and <system> is one of: $PREBUILT_SYSTEMS"
88 echo ""
89 echo "Use the --prebuilt-prefix=<path>/<prefix> option to build release"
90 echo "packages from these tarballs."
91 echo ""
92 echo "Alternatively, you can use --prebuilt-ndk=<file> where <file> is the"
93 echo "path to a previous official NDK release package. It will be used to"
94 echo "extract the toolchain binaries and copy them to your new release."
95 echo "Only use this for experimental release packages!"
96 echo ""
97 echo "The generated release packages will be stored in a temporary directory"
98 echo "that will be printed at the end of the generation process."
99 echo ""
100 echo "Options: [defaults in brackets after descriptions]"
101 echo ""
102 echo " --help Print this help message"
103 echo " --prefix=PREFIX Release package prefix name [$PREFIX]"
104 echo " --release=NAME Specify release name [$RELEASE]"
105 echo " --prebuilt-prefix=PREFIX Prefix of prebuilt binary tarballs [$PREBUILT_PREFIX]"
106 echo " --prebuilt-ndk=FILE Specify a previous NDK package [$PREBUILT_NDK]"
107 echo " --systems=SYSTEMS List of host system packages [$PREBUILT_SYSTEMS]"
108 echo " --no-git Don't use git to list input files, take all of them."
109 echo ""
116 echo "ERROR: You cannot use both --prebuilt-ndk and --prebuilt-prefix at the same time."
121 echo "ERROR: You must use one of --prebuilt-prefix or --prebuilt-ndk. See --help for details."
127 echo "ERROR: the --prebuilt-prefix argument must not be a direct directory path: $PREBUILT_PREFIX."
132 echo "ERROR: the --prebuilt-prefix argument does not point to a directory: $PREBUILT_DIR"
136 echo "ERROR: Your systems list is empty, use --system=LIST to specify a different one."
143 echo "ERROR: It seems there is no prebuilt binary tarball for the '$SYS' system"
144 echo "Please check the content of $PREBUILT_DIR for a file named $PREBUILT_PREFIX-$SYS.tar.bz2."
150 echo "ERROR: the --prebuilt-ndk argument is not a file: $PREBUILT_NDK"
155 echo "$PREBUILT_NDK" | grep -q "$HOST_NDK_SUFFIX"
157 echo "ERROR: the name of the prebuilt NDK must end in $HOST_NDK_SUFFIX"
165 echo "Collecting sources from git (use --no-git to copy all files instead)."
168 echo "Collecting all sources files under tree."
177 GIT_FILES=`echo $GIT_FILES | sed -e "s!\./!!g"`
188 echo "Creating reference from source files"
194 echo "Could not create reference. Aborting."
201 echo "Preparing package for system $SYSTEM."
208 echo "Could not copy reference. Aborting."
213 echo "Unpacking prebuilt toolchain from $PREBUILT_NDK"
217 echo "Could not create temporary directory: $UNZIP_DIR"
222 echo "ERROR: Could not unzip NDK package $PREBUILT_NDK"
227 echo "Unpacking $PREBUILT.tar.bz2"
230 echo "Could not unpack prebuilt for system $SYSTEM. Aborting."
236 echo "Creating $ARCHIVE"
239 echo "Could not create zip archive. Aborting."
246 echo "Cleaning up."
250 echo "Done, please see packages in $TMPDIR:"