common/autoconf/help.m4

changeset 494
e64f2cb57d05
parent 458
c8d320b48626
child 635
907a926d3c96
equal deleted inserted replaced
488:8a3fe0ae06a8 494:e64f2cb57d05
52 52
53 if test "x$PKGHANDLER_COMMAND" != x; then 53 if test "x$PKGHANDLER_COMMAND" != x; then
54 HELP_MSG="You might be able to fix this by running '$PKGHANDLER_COMMAND'." 54 HELP_MSG="You might be able to fix this by running '$PKGHANDLER_COMMAND'."
55 fi 55 fi
56 ]) 56 ])
57
58 cygwin_help() {
59 case $1 in
60 unzip)
61 PKGHANDLER_COMMAND="cd <location of cygwin setup.exe> && cmd /c setup -q -P unzip" ;;
62 zip)
63 PKGHANDLER_COMMAND="cd <location of cygwin setup.exe> && cmd /c setup -q -P zip" ;;
64 make)
65 PKGHANDLER_COMMAND="cd <location of cygwin setup.exe> && cmd /c setup -q -P make" ;;
66 * )
67 break ;;
68 esac
69 }
57 70
58 apt_help() { 71 apt_help() {
59 case $1 in 72 case $1 in
60 devkit) 73 devkit)
61 PKGHANDLER_COMMAND="sudo apt-get install build-essential" ;; 74 PKGHANDLER_COMMAND="sudo apt-get install build-essential" ;;
147 printf "Configuration summary:\n" 160 printf "Configuration summary:\n"
148 printf "* Debug level: $DEBUG_LEVEL\n" 161 printf "* Debug level: $DEBUG_LEVEL\n"
149 printf "* JDK variant: $JDK_VARIANT\n" 162 printf "* JDK variant: $JDK_VARIANT\n"
150 printf "* JVM variants: $with_jvm_variants\n" 163 printf "* JVM variants: $with_jvm_variants\n"
151 printf "* OpenJDK target: OS: $OPENJDK_TARGET_OS, CPU architecture: $OPENJDK_TARGET_CPU_ARCH, address length: $OPENJDK_TARGET_CPU_BITS\n" 164 printf "* OpenJDK target: OS: $OPENJDK_TARGET_OS, CPU architecture: $OPENJDK_TARGET_CPU_ARCH, address length: $OPENJDK_TARGET_CPU_BITS\n"
152 printf "* Boot JDK: $BOOT_JDK\n" 165
166 printf "\n"
167 printf "Tools summary:\n"
168 if test "x$OPENJDK_BUILD_OS" = "xwindows"; then
169 printf "* Environment: $WINDOWS_ENV_VENDOR version $WINDOWS_ENV_VERSION (root at $WINDOWS_ENV_ROOT_PATH)\n"
170 fi
171 printf "* Boot JDK: $BOOT_JDK_VERSION (at $BOOT_JDK)\n"
172 printf "* C Compiler: $CC_VENDOR version $CC_VERSION (at $CC)\n"
173 printf "* C++ Compiler: $CXX_VENDOR version $CXX_VERSION (at $CXX)\n"
153 174
154 printf "\n" 175 printf "\n"
155 printf "Build performance summary:\n" 176 printf "Build performance summary:\n"
156 printf "* Cores to use: $NUM_CORES\n" 177 printf "* Cores to use: $NUM_CORES\n"
157 printf "* Memory limit: $MEMORY_SIZE MB\n" 178 printf "* Memory limit: $MEMORY_SIZE MB\n"

mercurial