refactored some code. compiles now without suppresing any warning with gcc-6.3.0.
[AROS.git] / config / build.cfg.in
blob33561ee90f93974e91b02f4425d6a35336d53a7a
1 # Fixup some things ...
3 ifeq ($(AROS_HOST_ARCH),darwin)
4 # We don't allow these includes/libdirs because doing so
5 # results in the wrong version of  libiconv being used
6 # to link components. It has a different ABI from
7 # the system's libiconv, which causes conflicts/unresolved
8 # symbols.
9 HOST_CFLAGS := $(subst -I/usr/local/include,, $(subst -I/usr/local/include/,, $(subst -I/opt/local/include,, $(subst -I/opt/local/include/,, $(subst -I/opt/pkg/include,, $(subst -I/opt/pkg/include/,, $(HOST_CFLAGS)))))))
10 HOST_LDFLAGS   := $(subst -L/usr/local/lib,, $(subst -L/usr/local/lib/,, $(subst -L/opt/local/lib,, $(subst -L/opt/local/lib/,, $(subst -L/opt/pkg/lib,, $(subst -L/opt/pkg/lib/,, $(HOST_LDFLAGS)))))))
11 endif
13 # Optional components
15 # DBUS flags
16 DBUS_CFLAGS     := @DBUS_CFLAGS@
17 DBUS_LIBFLAGS   := @DBUS_LIBFLAGS@
19 ifeq ($(OPT_HOST_X11GFX),yes)
20 HOST_X11_CFLAGS := @aros_host_x11_cflags@
21 HOST_X11_LDFLAGS   := @aros_host_x11_ldflags@
22 endif
24 ifeq ($(OPT_HOST_SDLGFX),yes)
25 HOST_SDL_CFLAGS := @aros_host_sdl_cflags@
26 HOST_SDL_LIBS   := @aros_host_sdl_libs@
27 endif
29 TARGET_STRIP    := $(TARGET_DEF_STRIP)
30 HOST_STRIP      := $(HOST_DEF_STRIP)
32 # Enable LTO if supported ...
33 TARGET_LTO      := @aros_config_lto@
35 KERNEL_CXXFLAGS   := $(subst -Wno-pointer-sign,, $(subst -Werror-implicit-function-declaration,, $(KERNEL_CFLAGS)))
37 # Kernel private includes, in order of precedence:
38 ifneq (,$(findstring $(ARCH),raspi))
39 TARGET_KERNEL_INCLUDES := -I$(SRCDIR)/arch/$(CPU)-native/kernel
40 else
41 TARGET_KERNEL_INCLUDES := -I$(SRCDIR)/arch/$(CPU)-$(ARCH)/kernel
42 endif
43 TARGET_KERNEL_INCLUDES += -I$(SRCDIR)/arch/all-$(ARCH)/kernel
44 ifneq ($(FAMILY),)
45 TARGET_KERNEL_INCLUDES += -I$(SRCDIR)/arch/all-$(FAMILY)/kernel
46 endif
47 TARGET_KERNEL_INCLUDES += -I$(SRCDIR)/arch/$(CPU)-all/kernel \
48                         -I$(SRCDIR)/rom/kernel
50 # Exec private includes, in order of precedence:
51 ifneq (,$(findstring $(ARCH),raspi))
52 TARGET_EXEC_INCLUDES := -I$(SRCDIR)/arch/$(CPU)-native/exec
53 else
54 TARGET_EXEC_INCLUDES := -I$(SRCDIR)/arch/$(CPU)-$(ARCH)/exec
55 endif
56 TARGET_EXEC_INCLUDES += -I$(SRCDIR)/arch/all-$(ARCH)/exec
57 ifneq ($(FAMILY),)
58 TARGET_EXEC_INCLUDES += -I$(SRCDIR)/arch/all-$(FAMILY)/exec
59 endif
60 TARGET_EXEC_INCLUDES += -I$(SRCDIR)/arch/$(CPU)-all/exec \
61                       -I$(SRCDIR)/rom/exec
63 PRIV_KERNEL_INCLUDES := $(TARGET_KERNEL_INCLUDES) $(TARGET_EXEC_INCLUDES)
64 PRIV_EXEC_INCLUDES := $(TARGET_EXEC_INCLUDES) $(TARGET_KERNEL_INCLUDES)