forked from nanovms/nanos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.mk
53 lines (49 loc) · 1.23 KB
/
vars.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# paths
makefile_dir= $(patsubst %/,%,$(dir $(abspath $(firstword $(filter $1, $(MAKEFILE_LIST))))))
CURDIR= $(call makefile_dir, Makefile)
ROOTDIR= $(call makefile_dir, %vars.mk)
SRCDIR= $(ROOTDIR)/src
OUTDIR= $(ROOTDIR)/output
OBJDIR= $(subst $(ROOTDIR),$(OUTDIR),$(CURDIR))
VENDORDIR= $(ROOTDIR)/vendor
TOOLDIR= $(OUTDIR)/tools/bin
PATCHDIR= $(ROOTDIR)/patches
UNAME_s= $(shell uname -s)
UNAME_m= $(shell uname -m)
HOST_ARCH= $(UNAME_m)
ifeq ($(HOST_ARCH),arm64)
override HOST_ARCH:= aarch64
endif
# If no platform is specified, try to guess it from the host architecture.
ifeq ($(PLATFORM),)
ARCH?= $(HOST_ARCH)
ifeq ($(ARCH),aarch64)
PLATFORM?= virt
endif
ifeq ($(ARCH),x86_64)
PLATFORM?= pc
endif
ifeq ($(ARCH),riscv64)
PLATFORM?= riscv-virt
endif
else
# Otherwise, assume we're cross-compiling, and derive the arch from the platform.
ifeq ($(PLATFORM),virt)
ARCH?= aarch64
endif
ifeq ($(PLATFORM),pc)
ARCH?= x86_64
endif
ifeq ($(PLATFORM),riscv-virt)
ARCH?= riscv64
endif
ifneq ($(ARCH),$(HOST_ARCH))
CROSS_COMPILE?= $(ARCH)-linux-gnu-
endif
endif
ifeq ($(UNAME_s),Darwin)
CROSS_COMPILE=$(ARCH)-elf-
endif
PLATFORMDIR= $(ROOTDIR)/platform/$(PLATFORM)
PLATFORMOBJDIR= $(subst $(ROOTDIR),$(OUTDIR),$(PLATFORMDIR))
ARCHDIR= $(SRCDIR)/$(ARCH)