summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2013-05-10 11:59:28 +0200
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2013-05-10 12:02:18 +0200
commit7ab7f865dcf237135958fafcaf5871670b18794c (patch)
tree9b6a9aceb3d032317a1525ac41170dcf0c239849
parentb210a3a8cbfa887528a6082920c66e629f1d9bc4 (diff)
downloadrockbox-7ab7f86.tar.gz
rockbox-7ab7f86.zip
Restructure options passed to libs Makefile.
Setup AR before checking for ccache to avoid adding ccache to ar. Setup CC and CFLAGS in the beginning as well. Quote ar and system speex options to fix building with ccache enabled. Change-Id: I21714f0849e990abeac72dcda52c81474e090934
-rw-r--r--rbutil/rbutilqt/rbutilqt.pro32
1 files changed, 16 insertions, 16 deletions
diff --git a/rbutil/rbutilqt/rbutilqt.pro b/rbutil/rbutilqt/rbutilqt.pro
index 9eaf4568c2..50b2e7c798 100644
--- a/rbutil/rbutilqt/rbutilqt.pro
+++ b/rbutil/rbutilqt/rbutilqt.pro
@@ -13,6 +13,14 @@
# KIND, either express or implied.
#
+# The external Makefiles use ar to create libs. To allow cross-compiling pass
+# the ar that matches the current gcc. Since qmake doesn't provide a variable
+# holding the correct ar without any additions we need to figure it ourselves
+# here.
+# Only do this if CC is gcc. Also, do this before ccache support is enabled.
+contains(QMAKE_CC,($$find(QMAKE_CC,.*gcc.*))) {
+ EXTRALIBS_OPTS = "EXTRALIBS_AR=\""$$replace(QMAKE_CC,gcc.*,ar)\"
+}
# ccache
unix:!mac:!noccache {
CCACHE = $$system(which ccache)
@@ -22,6 +30,9 @@ unix:!mac:!noccache {
QMAKE_CC = ccache $$QMAKE_CC
}
}
+MACHINEFLAGS = $$find(QMAKE_CFLAGS, -m[63][42])
+EXTRALIBS_OPTS += EXTRALIBS_CC=\"$$QMAKE_CC\"
+EXTRALIBS_OPTS += EXTRALIB_CFLAGS=\"$$MACHINEFLAGS\" \
MYBUILDDIR = $$OUT_PWD/build/
MYLIBBUILDDIR = $$MYBUILDDIR/libs/
@@ -46,8 +57,6 @@ RCC_DIR = $$MYBUILDDIR/rcc
message("Qt version used:" $$VER)
}
-MACHINEFLAGS = $$find(QMAKE_CFLAGS, -m[63][42])
-
RBBASE_DIR = $$_PRO_FILE_PWD_
RBBASE_DIR = $$replace(RBBASE_DIR,/rbutil/rbutilqt,)
@@ -66,29 +75,20 @@ message("Rockbox Base dir: "$$RBBASE_DIR)
!static:unix:!mac {
LIBSPEEX = $$system(pkg-config --silence-errors --libs speex speexdsp)
}
-# The external Makefiles use ar to create libs. To allow cross-compiling pass
-# the ar that matches the current gcc. Since qmake doesn't provide a variable
-# holding the correct ar without any additions we need to figure it ourselves
-# here. This assumes that QMAKE_CC will always be "gcc", maybe with a postfix.
-contains(QMAKE_CC, gcc) {
- EXTRALIBS_MYAR = "EXTRALIBS_AR="$$replace(QMAKE_CC,gcc.*,ar)
-}
extralibs.commands = $$SILENT \
$(MAKE) -f $$RBBASE_DIR/rbutil/rbutilqt/Makefile.libs \
$$VERBOSE \
- SYS_SPEEX=$$LIBSPEEX \
+ SYS_SPEEX=\"$$LIBSPEEX\" \
BUILD_DIR=$$MYLIBBUILDDIR/ \
TARGET_DIR=$$MYLIBBUILDDIR \
RBBASE_DIR=$$RBBASE_DIR \
- EXTRALIBS_CC=\"$$QMAKE_CC\" \
- EXTRALIB_CFLAGS=\"$$MACHINEFLAGS\" \
- $$EXTRALIBS_MYAR \
+ $$EXTRALIBS_OPTS \
libs
# Note: order is important for RBLIBS! The libs are appended to the linker
# flags in this order, put libucl at the end.
-RBLIBS = librbspeex libipodpatcher libsansapatcher libmkamsboot libmktccboot \
- libmkmpioboot libchinachippatcher libmkimxboot libucl
+RBLIBS = rbspeex ipodpatcher sansapatcher mkamsboot mktccboot \
+ mkmpioboot chinachippatcher mkimxboot ucl
QMAKE_EXTRA_TARGETS += extralibs
PRE_TARGETDEPS += extralibs
@@ -116,7 +116,7 @@ DEPENDPATH = $$INCLUDEPATH
LIBS += -L$$OUT_PWD -L$$MYLIBBUILDDIR
# append all RBLIBS to LIBS
for(rblib, RBLIBS) {
- LIBS += -l$$replace(rblib, lib,)
+ LIBS += -l$$rblib
}
# on win32 libz is linked implicitly.