print architectures supported when -v used
+echo "" > ${DERIVED_FILE_DIR}/configure.h
+if [ -n "${IPHONEOS_DEPLOYMENT_TARGET}" ]; then
+ echo "#define DEFAULT_IPHONEOS_MIN_VERSION \"${IPHONEOS_DEPLOYMENT_TARGET}\"" >> ${DERIVED_FILE_DIR}/configure.h
+ if [ -n "${MACOSX_DEPLOYMENT_TARGET}" ]; then
+ echo "#define DEFAULT_MACOSX_MIN_VERSION \"${MACOSX_DEPLOYMENT_TARGET}\"" >> ${DERIVED_FILE_DIR}/configure.h
+if [ -z "${RC_SUPPORTED_ARCHS}" ]; then
+ RC_SUPPORTED_ARCHS="i386 x86_64 ppc ppc64 armv6 armv7"
+echo "#define ALL_SUPPORTED_ARCHS \"${RC_SUPPORTED_ARCHS}\"" >> ${DERIVED_FILE_DIR}/configure.h
@@ -734,7 +734,7 @@ extern void printLTOVersion(Options& opts);
void printLTOVersion(Options& opts) {
const char* vers = lto_get_version();
- fprintf(stderr, "%s\n", vers);
+ fprintf(stderr, "LTO support using: %s\n", vers);
@@ -2598,6 +2598,7 @@ void Options::buildSearchPaths(int argc, const char* argv[])
extern const char ldVersionString[];
fprintf(stderr, "%s", ldVersionString);
+ fprintf(stderr, "configured to support archs: %s\n", ALL_SUPPORTED_ARCHS);
// if only -v specified, exit cleanly