Fix qmake compilation
authorOlivier Goffart <ogoffart@woboq.com>
Mon, 13 Feb 2012 09:32:40 +0000 (10:32 +0100)
committerQt by Nokia <qt-info@nokia.com>
Mon, 13 Feb 2012 11:02:11 +0000 (12:02 +0100)
No need to error out in bootstrapped mode because we don't use -fPIC

Change-Id: I0cc2889c75b41968edfd8e801b9161a1eb63f6ef
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
src/corelib/global/qglobal.h

index ffeb8a2..0e45093 100644 (file)
@@ -1784,7 +1784,7 @@ Q_CORE_EXPORT int qrand();
 #  endif
 #endif
 
-#if defined(QT_REDUCE_RELOCATIONS) && defined(__ELF__) && !defined(__PIC__)
+#if !defined(QT_BOOTSTRAPPED) && defined(QT_REDUCE_RELOCATIONS) && defined(__ELF__) && !defined(__PIC__)
 #  error "You must build your code with position independent code if Qt was built with -reduce-relocations. "\
          "Compile your code with -fPIC or -fPIE."
 #endif