genode/repos/base-nova/Tuprules.tup
Emery Hemingway 969180525f Use patched binary toolchain from Genode Labs
- Fetch and patch GCC distribution
 - Pass Tup config as a file
 - Fold out and dev outputs
 - Remove shellHook code for compatibility with dev-shell
 - Tweak Tup Nix conditionals
 - Add Tupfile.ini
 - Remove custom setup-hook
2020-01-05 20:32:08 +01:00

17 lines
292 B
Plaintext

ifeq (@(TUP_ARCH),x86_32)
CPPFLAGS += -I$(TUP_CWD)/include/spec/64bit
endif
ifeq (@(TUP_ARCH),x86_64)
CPPFLAGS += -I$(TUP_CWD)/include/spec/64bit
endif
ifdef IS_GCC
CXXFLAGS += -Wno-attributes
endif
CPPFLAGS += -I$(TUP_CWD)/include
include &(BASE_DIR)/Tuprules.tup
REP_DIR = $(TUP_CWD)