It believe it is a bad idea to hardcode a specific compiler prefix that may or may not be installed on a user's system. It is annoying when testing features that should not require compilers at all. For example, mrproper, headers_install, etc. should work without any compiler. They look like follows on my machine. $ make ARCH=h8300 mrproper ./scripts/gcc-version.sh: line 26: h8300-unknown-linux-gcc: command not found ./scripts/gcc-version.sh: line 27: h8300-unknown-linux-gcc: command not found make: h8300-unknown-linux-gcc: Command not found make: h8300-unknown-linux-gcc: Command not found [ a bunch of the same error messages continue ] $ make ARCH=h8300 headers_install ./scripts/gcc-version.sh: line 26: h8300-unknown-linux-gcc: command not found ./scripts/gcc-version.sh: line 27: h8300-unknown-linux-gcc: command not found make: h8300-unknown-linux-gcc: Command not found HOSTCC scripts/basic/fixdep make: h8300-unknown-linux-gcc: Command not found WRAP arch/h8300/include/generated/uapi/asm/kvm_para.h [ snip ] The solution is to delete this line, or to use cc-cross-prefix like some architectures do. I chose the latter as a moderate fixup. I added an alternative 'h8300-linux-' because it is available at: https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/8.1.0/ Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # arch/h8300/Makefile
 | |
| #
 | |
| # This file is subject to the terms and conditions of the GNU General Public
 | |
| # License.  See the file "COPYING" in the main directory of this archive
 | |
| # for more details.
 | |
| #
 | |
| # (C) Copyright 2002-2015 Yoshinori Sato <ysato@users.sourceforge.jp>
 | |
| #
 | |
| 
 | |
| KBUILD_DEFCONFIG := edosk2674_defconfig
 | |
| 
 | |
| cflags-$(CONFIG_CPU_H8300H)	:= -mh
 | |
| aflags-$(CONFIG_CPU_H8300H)	:= -mh -Wa,--mach=h8300h
 | |
| ldflags-$(CONFIG_CPU_H8300H)	:= -mh8300helf_linux
 | |
| cflags-$(CONFIG_CPU_H8S)	:= -ms
 | |
| aflags-$(CONFIG_CPU_H8S)	:= -ms -Wa,--mach=h8300s
 | |
| ldflags-$(CONFIG_CPU_H8S)	:= -mh8300self_linux
 | |
| 
 | |
| KBUILD_CFLAGS += $(cflags-y)
 | |
| KBUILD_CFLAGS += -mint32 -fno-builtin
 | |
| KBUILD_CFLAGS += -D__linux__
 | |
| KBUILD_CFLAGS += -DUTS_SYSNAME=\"uClinux\"
 | |
| KBUILD_AFLAGS += $(aflags-y)
 | |
| KBUILD_LDFLAGS += $(ldflags-y)
 | |
| 
 | |
| CHECKFLAGS += -msize-long
 | |
| 
 | |
| ifeq ($(CROSS_COMPILE),)
 | |
| CROSS_COMPILE := $(call cc-cross-prefix, h8300-unknown-linux- h8300-linux-)
 | |
| endif
 | |
| 
 | |
| core-y	+= arch/$(ARCH)/kernel/ arch/$(ARCH)/mm/
 | |
| core-y	+= arch/$(ARCH)/boot/dts/
 | |
| 
 | |
| libs-y	+= arch/$(ARCH)/lib/
 | |
| 
 | |
| boot := arch/h8300/boot
 | |
| 
 | |
| archclean:
 | |
| 	$(Q)$(MAKE) $(clean)=$(boot)
 | |
| 
 | |
| vmlinux.srec vmlinux.bin zImage uImage.bin: vmlinux
 | |
| 	$(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
 | |
| 
 | |
| define archhelp
 | |
|   @echo  'vmlinux.bin  - Create raw binary'
 | |
|   @echo  'vmlinux.srec - Create srec binary'
 | |
|   @echo  'zImage       - Compressed kernel image'
 | |
| endef
 |