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