sortix-mirror/build-aux/compiler.mak

127 lines
3.0 KiB
Makefile
Raw Normal View History

# Warn if default target is used and the software shouldn't be built under Sortix.
ifeq ($(BUILD_IS_SORTIX),1)
ifeq ($(MAKEFILE_NOT_MEANT_FOR_SORTIX), 1)
makefile_not_meant_for_sortix:
@echo This makefile isn\'t meant to work under Sortix
@exit 1
endif
2012-09-10 21:36:15 +00:00
endif
# Warn if default target is used and the software should be built under Sortix.
ifeq ($(BUILD_IS_SORTIX),0)
ifeq ($(MAKEFILE_MEANT_FOR_SORTIX), 1)
makefile_meant_for_sortix:
@echo This makefile is meant to work under Sortix, not $(BUILD)
@exit 1
endif
endif
# Warn if default target is used and the software shouldn't be built for Sortix.
ifeq ($(HOST_IS_SORTIX),1)
ifeq ($(SOFTWARE_NOT_MEANT_FOR_SORTIX), 1)
software_not_meant_for_sortix:
@echo This software isn\'t meant to work under Sortix
@exit 1
2012-09-10 21:36:15 +00:00
endif
endif
# Warn if default target is used and the software should be built for Sortix.
ifeq ($(HOST_IS_SORTIX),0)
ifeq ($(SOFTWARE_MEANT_FOR_SORTIX), 1)
software_meant_for_sortix:
@echo This software is meant to work under Sortix, not $(HOST)
@echo Attempt was $(MAKE) $(MAKEFLAGS)
@echo Try: $(MAKE) $(MAKEFLAGS) HOST=$(UNAME_PLATFORM)-sortix
@exit 1
endif
endif
# Provide deprecated CPU variable so makefiles can select CPU-specific dirs.
2012-09-10 21:36:15 +00:00
ifeq ($(HOST),i486-sortix)
MACHINE:=i486
2012-09-10 21:36:15 +00:00
CPU:=x86
endif
ifeq ($(HOST),x86_64-sortix)
MACHINE:=x86_64
2012-09-10 21:36:15 +00:00
CPU:=x64
endif
# Determine the prefix for build tools.
ifndef BUILD_TOOL_PREFIX
BUILD_TOOL_PREFIX:=
endif
# Determine the prefix for host tools.
ifndef HOST_TOOL_PREFIX
ifeq ($(BUILD),$(HOST))
HOST_TOOL_PREFIX:=$(BUILD_TOOL_PREFIX)
else
HOST_TOOL_PREFIX:=$(HOST)-
endif
endif
# Determine the names of the tools that target the build platform.
2012-09-10 21:36:15 +00:00
ifndef BUILDCC
BUILDCC:=$(BUILD_TOOL_PREFIX)gcc
2012-09-10 21:36:15 +00:00
endif
ifndef BUILDCXX
BUILDCXX:=$(BUILD_TOOL_PREFIX)g++
2012-09-10 21:36:15 +00:00
endif
ifndef BUILDAR
BUILDAR:=$(BUILD_TOOL_PREFIX)ar
2012-09-10 21:36:15 +00:00
endif
ifndef BUILDAS
BUILDAS:=$(BUILD_TOOL_PREFIX)as
2012-09-10 21:36:15 +00:00
endif
ifndef BUILDLD
BUILDAS:=$(BUILD_TOOL_PREFIX)ld
2012-09-10 21:36:15 +00:00
endif
ifndef BUILDOBJCOPY
BUILDOBJCOPY:=$(BUILD_TOOL_PREFIX)objcopy
2012-09-10 21:36:15 +00:00
endif
# Determine the names of the tools that target the host platform.
2012-09-10 21:36:15 +00:00
ifndef HOSTCC
HOSTCC:=$(HOST_TOOL_PREFIX)gcc
2012-09-10 21:36:15 +00:00
endif
ifndef HOSTCXX
HOSTCXX:=$(HOST_TOOL_PREFIX)g++
2012-09-10 21:36:15 +00:00
endif
ifndef HOSTAR
HOSTAR:=$(HOST_TOOL_PREFIX)ar
2012-09-10 21:36:15 +00:00
endif
ifndef HOSTAS
HOSTAS:=$(HOST_TOOL_PREFIX)as
2012-09-10 21:36:15 +00:00
endif
ifndef HOSTLD
HOSTLD:=$(HOST_TOOL_PREFIX)ld
2012-09-10 21:36:15 +00:00
endif
ifndef HOSTOBJCOPY
HOSTOBJCOPY:=$(HOST_TOOL_PREFIX)objcopy
2012-09-10 21:36:15 +00:00
endif
ifdef SYSROOT
HOSTCC:=$(HOSTCC) --sysroot="$(SYSROOT)"
HOSTCXX:=$(HOSTCXX) --sysroot="$(SYSROOT)"
HOSTLD:=$(HOSTLD) --sysroot="$(SYSROOT)"
endif
2012-09-10 21:36:15 +00:00
CC:=$(HOSTCC)
CXX:=$(HOSTCXX)
AR:=$(HOSTAR)
2012-09-10 21:36:15 +00:00
AS:=$(HOSTAS)
LD:=$(HOSTLD)
OBJCOPY:=$(HOSTOBJCOPY)
# Determine default optimization level.
DEFAULT_GENERIC_OPTLEVEL_BASE:=-O2 -g
DEFAULT_BUILD_OPTLEVEL:=$(DEFAULT_GENERIC_OPTLEVEL_BASE)
ifeq ($(BUILD_IS_SORTIX),1)
DEFAULT_BUILD_OPTLEVEL+=
endif
DEFAULT_HOST_OPTLEVEL:=$(DEFAULT_GENERIC_OPTLEVEL_BASE)
DEFAULT_OPTLEVEL:=$(DEFAULT_GENERIC_OPTLEVEL_BASE)
ifeq ($(HOST_IS_SORTIX),1)
DEFAULT_HOST_OPTLEVEL+=
DEFAULT_OPTLEVEL+=
endif