Lines Matching full:echo
70 echo "unknown option '$opt', use --help"
83 echo "Standard options:"
84 echo " --help print this message"
85 echo " --install=FILEPATH copy emulator executable to FILEPATH [$TARGETS]"
86 echo " --cc=PATH specify C compiler [$CC]"
87 echo " --sdl-config=FILE use specific sdl-config script [$SDL_CONFIG]"
88 echo " --no-strip do not strip emulator executable"
89 echo " --debug enable debug (-O0 -g) build"
90 echo " --ignore-audio ignore audio messages (may build sound-less emulator)"
91 echo " --no-prebuilts do not use prebuilt libraries and compiler"
92 echo " --try-64 try to build a 64-bit executable (may crash)"
93 echo " --static build a completely static executable"
94 echo " --verbose verbose configuration"
95 echo " --debug build debug version of the emulator"
96 echo ""
184 echo "WARNING: YOU SHOULD USE THE --sdl-config OPTION"
195 echo "Please ensure that you have the emulator's patched libSDL"
196 echo "built somewhere and point to its sdl-config script either"
197 echo "with the SDL_CONFIG env. variable, or the --sdl-config=<script>"
198 echo "option."
210 SDL_CFLAGS=`echo $SDL_CFLAGS | sed -e s/-D_GNU_SOURCE=1//g`
235 echo "You provided an explicit sdl-config script, but the corresponding library"
236 echo "cannot be statically linked with the Android emulator directly."
237 echo "Error message:"
262 echo "You provided an explicit sdl-config script in SDL_CONFIG, but the"
263 echo "corresponding library doesn't have the patches required to link"
264 echo "with the Android emulator. Unsetting SDL_CONFIG will use the"
265 echo "sources bundled with the emulator instead"
266 echo "Error:"
309 echo "the EsounD development files do not seem to be installed on this system"
310 echo "Are you missing the libesd-dev package ?"
311 echo "Correct the errors below and try again:"
329 echo "the ALSA development files do not seem to be installed on this system"
330 echo "Are you missing the libasound-dev package ?"
331 echo "Correct the erros below and try again"
389 echo "TARGET_ARCH := arm" >> $config_mk
390 echo "SRC_PATH := $PWD" >> $config_mk
391 echo "SDL_CONFIG := $SDL_CONFIG" >> $config_mk
392 echo "CONFIG_COREAUDIO := $PROBE_COREAUDIO" >> $config_mk
393 echo "CONFIG_WINAUDIO := $PROBE_WINAUDIO" >> $config_mk
394 echo "CONFIG_ESD := $PROBE_ESD" >> $config_mk
395 echo "CONFIG_ALSA := $PROBE_ALSA" >> $config_mk
396 echo "CONFIG_OSS := $PROBE_OSS" >> $config_mk
397 echo "BUILD_STANDALONE_EMULATOR := true" >> $config_mk
399 echo "BUILD_DEBUG_EMULATOR := true" >> $config_mk
402 echo "CONFIG_STATIC_EXECUTABLE := true" >> $config_mk
406 echo "ANDROID_SDK_TOOLS_REVISION := $ANDROID_SDK_TOOLS_REVISION" >> $config_mk
412 echo "/* This file was autogenerated by '$PROGNAME' */" > $config_h
413 echo "#define CONFIG_QEMU_SHAREDIR \"/usr/local/share/qemu\"" >> $config_h
414 echo "#define HOST_LONG_BITS $HOST_LONGBITS" >> $config_h
416 echo "#define HAVE_BYTESWAP_H 1" >> $config_h
418 echo "#define CONFIG_GDBSTUB 1" >> $config_h
419 echo "#define CONFIG_SLIRP 1" >> $config_h
420 echo "#define CONFIG_SKINS 1" >> $config_h
421 echo "#define CONFIG_TRACE 1" >> $config_h
424 echo "#define CONFIG_NAND_LIMITS 1" >> $config_h
426 echo "#define QEMU_VERSION \"0.10.50\"" >> $config_h
427 echo "#define QEMU_PKGVERSION \"Android\"" >> $config_h
438 echo "#define HOST_$CONFIG_CPU 1" >> $config_h
455 echo "CONFIG_STATIC_EXECUTABLE := true" >> $config_mk
456 echo "#define CONFIG_STATIC_EXECUTABLE 1" >> $config_h
461 echo "#define HAVE_IOVEC 1" >> $config_h
465 echo "#define CONFIG_$CONFIG_OS 1" >> $config_h
467 echo "#define _BSD 1" >> $config_h
468 echo "#define O_LARGEFILE 0" >> $config_h
469 echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
474 echo "Ready to go. Type 'make' to build emulator"