Browse Source

Merge pull request #3995 from nxhack/use_NOCACHE

icu: fix  fail situation of CONFIG_CCACHE=y
lilik-openwrt-22.03
Hannu Nyman 8 years ago
committed by GitHub
parent
commit
5c8bea8d7e
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      libs/icu/Makefile

+ 3
- 3
libs/icu/Makefile View File

@ -66,8 +66,8 @@ CONFIGURE_ARGS:= \
HOST_CONFIGURE_CMD:= ./runConfigureICU
HOST_CONFIGURE_ARGS:= \
Linux/gcc \
CC="$(HOSTCC)" \
CXX="$(HOSTCXX)" \
CC="$(HOSTCC_NOCACHE)" \
CXX="$(HOSTCXX_NOCACHE)" \
--disable-debug \
--enable-release \
--enable-shared \
@ -77,7 +77,7 @@ HOST_CONFIGURE_ARGS:= \
--disable-tracing \
--disable-extras \
--enable-dyload \
--prefix=$(HOST_BUILD_PREFIX)
--prefix=$(STAGING_DIR_HOSTPKG)
define Build/InstallDev
$(INSTALL_DIR) \


Loading…
Cancel
Save