mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-30 05:24:26 -04:00 
			
		
		
		
	u-boot,at91bootstrap: fix incorrect HOSTCPPFLAGS variable
This would should up as `$$(HOSTCPPFLAGS)` in the host CFLAGS. ``` make --jobserver-fds=3,4 -j -C <openwrt>/build_dir/target-arm_cortex-a8+vfpv3_musl_eabi/u-boot-A10-OLinuXino-Lime/u-boot-2017.07 CROSS_COMPILE=arm-openwrt-linux-muslgnueabi- DTC="<openwrt>/build_dir/target-arm_cortex-a8+vfpv3_musl_eabi/linux-sunxi_cortexa8/linux-4.9.76/scripts/dtc/dtc" HOSTCC="gcc" HOSTCFLAGS='-O2 -I<openwrt>/staging_dir/host/include -I<openwrt>/staging_dir/host/usr/include -I<openwrt>/staging_dir/hostpkg/include -I<openwrt>/staging_dir/target-arm_cortex-a8+vfpv3_musl_eabi/host/include $$(HOSTCPPFLAGS)' HOSTLDFLAGS="" BL31=<openwrt>/staging_dir/target-arm_cortex-a8+vfpv3_musl_eabi/image/bl31.bin ``` And then it would complain with: ``` /bin/sh: 1: HOSTCPPFLAGS: not found ``` Also, HOSTCPPFLAGS does not exist. The correct var is HOST_CPPFLAGS. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
This commit is contained in:
		
							parent
							
								
									d0d37e89af
								
							
						
					
					
						commit
						df9781a420
					
				| @ -42,7 +42,7 @@ TARGET_DEP = TARGET_$(BUILD_TARGET)$(if $(BUILD_SUBTARGET),_$(BUILD_SUBTARGET)) | |||||||
| 
 | 
 | ||||||
| UBOOT_MAKE_FLAGS = \
 | UBOOT_MAKE_FLAGS = \
 | ||||||
| 	HOSTCC="$(HOSTCC)" \
 | 	HOSTCC="$(HOSTCC)" \
 | ||||||
| 	HOSTCFLAGS='$(HOST_CFLAGS) $$$$(HOSTCPPFLAGS)' \
 | 	HOSTCFLAGS="$(HOST_CFLAGS) $(HOST_CPPFLAGS)" \
 | ||||||
| 	HOSTLDFLAGS="" | 	HOSTLDFLAGS="" | ||||||
| 
 | 
 | ||||||
| define Build/U-Boot/Target | define Build/U-Boot/Target | ||||||
|  | |||||||
| @ -26,7 +26,7 @@ TARGET_DEP = TARGET_$(BUILD_TARGET)$(if $(BUILD_SUBTARGET),_$(BUILD_SUBTARGET)) | |||||||
| 
 | 
 | ||||||
| AT91BOOTSTRAP_MAKE_FLAGS = \
 | AT91BOOTSTRAP_MAKE_FLAGS = \
 | ||||||
| 	HOSTCC="$(HOSTCC)" \
 | 	HOSTCC="$(HOSTCC)" \
 | ||||||
| 	HOSTCFLAGS='$(HOST_CFLAGS) $$$$(HOSTCPPFLAGS)' \
 | 	HOSTCFLAGS="$(HOST_CFLAGS) $(HOST_CPPFLAGS)" \
 | ||||||
| 	HOSTLDFLAGS="" | 	HOSTLDFLAGS="" | ||||||
| 
 | 
 | ||||||
| define Build/AT91Bootstrap/Target | define Build/AT91Bootstrap/Target | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user