xref: /openbmc/linux/tools/include/nolibc/Makefile (revision 17336755)
1# SPDX-License-Identifier: GPL-2.0
2# Makefile for nolibc installation and tests
3include ../../scripts/Makefile.include
4
5# we're in ".../tools/include/nolibc"
6ifeq ($(srctree),)
7srctree := $(patsubst %/tools/include/,%,$(dir $(CURDIR)))
8endif
9
10# when run as make -C tools/ nolibc_<foo> the arch is not set
11ifeq ($(ARCH),)
12include $(srctree)/scripts/subarch.include
13ARCH = $(SUBARCH)
14endif
15
16# OUTPUT is only set when run from the main makefile, otherwise
17# it defaults to this nolibc directory.
18OUTPUT ?= $(CURDIR)/
19
20ifeq ($(V),1)
21Q=
22else
23Q=@
24endif
25
26nolibc_arch := $(patsubst arm64,aarch64,$(ARCH))
27arch_file := arch-$(nolibc_arch).h
28all_files := \
29		compiler.h \
30		crt.h \
31		ctype.h \
32		errno.h \
33		nolibc.h \
34		signal.h \
35		stackprotector.h \
36		std.h \
37		stdint.h \
38		stdlib.h \
39		string.h \
40		sys.h \
41		time.h \
42		types.h \
43		unistd.h \
44		stdio.h \
45
46
47# install all headers needed to support a bare-metal compiler
48all: headers
49
50install: help
51
52help:
53	@echo "Supported targets under nolibc:"
54	@echo "  all                 call \"headers\""
55	@echo "  clean               clean the sysroot"
56	@echo "  headers             prepare a sysroot in tools/include/nolibc/sysroot"
57	@echo "  headers_standalone  like \"headers\", and also install kernel headers"
58	@echo "  help                this help"
59	@echo ""
60	@echo "These targets may also be called from tools as \"make nolibc_<target>\"."
61	@echo ""
62	@echo "Currently using the following variables:"
63	@echo "  ARCH    = $(ARCH)"
64	@echo "  OUTPUT  = $(OUTPUT)"
65	@echo ""
66
67# Note: when ARCH is "x86" we concatenate both x86_64 and i386
68headers:
69	$(Q)mkdir -p $(OUTPUT)sysroot
70	$(Q)mkdir -p $(OUTPUT)sysroot/include
71	$(Q)cp $(all_files) $(OUTPUT)sysroot/include/
72	$(Q)if [ "$(ARCH)" = "x86" ]; then      \
73		sed -e                          \
74		  's,^#ifndef _NOLIBC_ARCH_X86_64_H,#if !defined(_NOLIBC_ARCH_X86_64_H) \&\& defined(__x86_64__),' \
75		  arch-x86_64.h;                \
76		sed -e                          \
77		  's,^#ifndef _NOLIBC_ARCH_I386_H,#if !defined(_NOLIBC_ARCH_I386_H) \&\& !defined(__x86_64__),' \
78		  arch-i386.h;                  \
79	elif [ -e "$(arch_file)" ]; then        \
80		cat $(arch_file);               \
81	else                                    \
82		echo "Fatal: architecture $(ARCH) not yet supported by nolibc." >&2; \
83		exit 1;                         \
84	fi > $(OUTPUT)sysroot/include/arch.h
85
86headers_standalone: headers
87	$(Q)$(MAKE) -C $(srctree) headers
88	$(Q)$(MAKE) -C $(srctree) headers_install INSTALL_HDR_PATH=$(OUTPUT)sysroot
89
90clean:
91	$(call QUIET_CLEAN, nolibc) rm -rf "$(OUTPUT)sysroot"
92