mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
b41df1fb7a
Commit also adapts Qt5 libraries. Issue #5015
90 lines
2.6 KiB
Makefile
90 lines
2.6 KiB
Makefile
include $(call select_from_repositories,lib/import/import-qt5_qmake.mk)
|
|
|
|
LIBS = base libc libm stdcxx qt5_component egl mesa qoost
|
|
|
|
INSTALL_LIBS = lib/libQt5Core.lib.so \
|
|
lib/libQt5Gui.lib.so \
|
|
lib/libQt5Network.lib.so \
|
|
lib/libQt5PrintSupport.lib.so \
|
|
lib/libQt5Sql.lib.so \
|
|
lib/libQt5Test.lib.so \
|
|
lib/libQt5Widgets.lib.so \
|
|
lib/libQt5Xml.lib.so \
|
|
plugins/platforms/libqgenode.lib.so \
|
|
plugins/imageformats/libqjpeg.lib.so \
|
|
plugins/sqldrivers/libqsqlite.lib.so
|
|
|
|
built.tag: qmake_prepared.tag qmake_root/lib/ld.lib.so
|
|
|
|
@#
|
|
@# run qmake
|
|
@#
|
|
|
|
$(VERBOSE)source env.sh && $(QMAKE) \
|
|
-qtconf qmake_root/mkspecs/$(QMAKE_PLATFORM)/qt.conf \
|
|
$(QT_DIR)/qtbase/qtbase.pro \
|
|
-- \
|
|
-prefix /qt \
|
|
-xplatform $(QMAKE_PLATFORM) \
|
|
-qpa genode \
|
|
-opensource \
|
|
-confirm-license \
|
|
-no-pch \
|
|
-release \
|
|
-force-debug-info \
|
|
-no-strip \
|
|
-opengl desktop \
|
|
-no-feature-dbus \
|
|
-no-feature-networkinterface \
|
|
-no-feature-process \
|
|
-no-feature-relocatable \
|
|
-no-feature-vulkan \
|
|
$(QT5_OUTPUT_FILTER)
|
|
|
|
@#
|
|
@# build
|
|
@#
|
|
|
|
$(VERBOSE)source env.sh && $(MAKE) sub-src $(QT5_OUTPUT_FILTER)
|
|
|
|
@#
|
|
@# install into local 'install' directory
|
|
@#
|
|
|
|
$(VERBOSE)$(MAKE) INSTALL_ROOT=$(CURDIR)/install sub-src-install_subtargets $(QT5_OUTPUT_FILTER)
|
|
|
|
$(VERBOSE) ln -sf .$(CURDIR)/qmake_root install/qt
|
|
|
|
@#
|
|
@# strip libs and create symlinks in 'bin' and 'debug' directories
|
|
@#
|
|
|
|
for LIB in $(INSTALL_LIBS); do \
|
|
cd $(CURDIR)/install/qt/$$(dirname $${LIB}) && \
|
|
$(OBJCOPY) --only-keep-debug $$(basename $${LIB}) $$(basename $${LIB}).debug && \
|
|
$(STRIP) $$(basename $${LIB}) -o $$(basename $${LIB}).stripped && \
|
|
$(OBJCOPY) --add-gnu-debuglink=$$(basename $${LIB}).debug $$(basename $${LIB}); \
|
|
ln -sf $(CURDIR)/install/qt/$${LIB}.stripped $(PWD)/bin/$$(basename $${LIB}); \
|
|
ln -sf $(CURDIR)/install/qt/$${LIB}.stripped $(PWD)/debug/$$(basename $${LIB}); \
|
|
ln -sf $(CURDIR)/install/qt/$${LIB}.debug $(PWD)/debug/; \
|
|
done
|
|
|
|
@#
|
|
@# create tar archives
|
|
@#
|
|
|
|
$(VERBOSE)tar chf $(PWD)/bin/qt5_libqgenode.tar --transform='s/\.stripped//' -C install qt/plugins/platforms/libqgenode.lib.so.stripped
|
|
$(VERBOSE)tar chf $(PWD)/bin/qt5_libqjpeg.tar --transform='s/\.stripped//' -C install qt/plugins/imageformats/libqjpeg.lib.so.stripped
|
|
$(VERBOSE)tar chf $(PWD)/bin/qt5_libqsqlite.tar --transform='s/\.stripped//' -C install qt/plugins/sqldrivers/libqsqlite.lib.so.stripped
|
|
|
|
@#
|
|
@# mark as done
|
|
@#
|
|
|
|
$(VERBOSE)touch $@
|
|
|
|
|
|
ifeq ($(called_from_lib_mk),yes)
|
|
all: built.tag
|
|
endif
|