mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
d182b20705
.SHELLFLAGS is extended by option pipefail to make pipes fail if any pipe element fails. As .SHELLFLAGS is exported into sub-make instances it must be unexported before calling third-party build systems recursively.
83 lines
2.3 KiB
PHP
83 lines
2.3 KiB
PHP
#
|
|
# Create prerequisites for building Genode for Fiasco.OC
|
|
#
|
|
# Prior building Genode programs for Fiasco.OC, the kernel bindings must be
|
|
# generated. This is done by building a minimalistic subset of the original
|
|
# userland (L4re) that comes with Fiasco.OC.
|
|
#
|
|
|
|
L4_SRC_DIR := $(call select_from_ports,foc)/src/kernel/foc
|
|
L4_BUILD_DIR := $(shell pwd)/build
|
|
L4_BIN_DIR := $(LIB_CACHE_DIR)/syscall-foc-$(BOARD)/build/bin/$(L4_ARCH)
|
|
|
|
#
|
|
# Create mirror for architecture-specific L4sys header files
|
|
#
|
|
L4_INC_TARGETS += l4/sys \
|
|
l4f/l4/sys \
|
|
l4/sigma0 \
|
|
l4/cxx
|
|
|
|
CC_OPT += -Iinclude
|
|
|
|
include/%:
|
|
$(VERBOSE)mkdir -p $(dir $@)
|
|
$(VERBOSE)ln -sf $(L4_BUILD_DIR)/include/$* $@
|
|
|
|
#
|
|
# Use 'regparm=0' call instead of an inline function, when accessing
|
|
# the utcb. This is needed to stay compatible with L4linux
|
|
#
|
|
CC_OPT += -DL4SYS_USE_UTCB_WRAP=1 -Wno-unused-function
|
|
|
|
#
|
|
# Create L4 build directory
|
|
#
|
|
# Resetting the 'MAKEFLAGS' is important because otherwise, the L4
|
|
# build system will stuble over predefined variables, i.e., 'LIB'
|
|
#
|
|
$(L4_BUILD_DIR)/.kconfig:
|
|
$(VERBOSE_MK) \
|
|
MAKEFLAGS= $(MAKE) $(VERBOSE_DIR) -C $(L4_SRC_DIR)/l4 \
|
|
B=$(L4_BUILD_DIR) DROPSCONF_DEFCONFIG="$(L4_CONFIG)" \
|
|
VERBOSE="$(VERBOSE)" CROSS_COMPILE="$(CROSS_DEV_PREFIX)" \
|
|
2>&1 | sed "s/^/ [l4build] /"
|
|
|
|
PKGS := l4re-core/ldscripts \
|
|
l4re-core/libgcc-pure \
|
|
l4re-core/l4sys \
|
|
l4re-core/libgcc \
|
|
l4re-core/libsigma0 \
|
|
l4re-core/crtn \
|
|
l4re-core/uclibc-headers \
|
|
l4re-core/l4util \
|
|
l4re-core/cxx
|
|
|
|
include $(REP_DIR)/lib/mk/l4_pkg.inc
|
|
|
|
$(PKG_TAGS): $(L4_BUILD_DIR)/.kconfig
|
|
$(PKG_TAGS): $(addprefix include/,$(L4_INC_TARGETS))
|
|
|
|
#
|
|
# Compile 'syscall-foc.lib.a' not before the 'PKGS' are completely built
|
|
#
|
|
$(SRC_S) $(SRC_C) : $(PKG_TAGS)
|
|
|
|
#
|
|
# Install sigma0 and bootstap to <build-dir>/bin such that the binaries will be
|
|
# included in the depot's base-foc binary archives.
|
|
#
|
|
ifneq ($(INSTALL_DIR),)
|
|
all: $(INSTALL_DIR)/sigma0-foc-$(BOARD) $(INSTALL_DIR)/bootstrap-foc-$(BOARD)
|
|
|
|
$(INSTALL_DIR)/sigma0-foc-$(BOARD) $(INSTALL_DIR)/bootstrap-foc-$(BOARD): $(PKG_TAGS)
|
|
|
|
$(INSTALL_DIR)/sigma0-foc-$(BOARD):
|
|
$(VERBOSE)ln -sf $(L4_BIN_DIR)/l4f/sigma0 $@
|
|
|
|
$(INSTALL_DIR)/bootstrap-foc-$(BOARD):
|
|
$(VERBOSE)ln -sf $(L4_BIN_DIR)/bootstrap $@
|
|
endif
|
|
|
|
|