diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-10-23 08:38:20 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-10-23 08:38:31 +0200 |
commit | f6de4889c74356a8e7c91a65ef765e3b32bf17f9 (patch) | |
tree | 674a61106e34a66af766f898c8b8a871d617d343 /toolchain/uclibc-ng | |
parent | b6e55ac8d5a98900c6e0cfa0091e488679680af3 (diff) |
arc: add support for free nSIM simulator, thx to Alexey for hints to get it running
Diffstat (limited to 'toolchain/uclibc-ng')
-rw-r--r-- | toolchain/uclibc-ng/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolchain/uclibc-ng/Makefile b/toolchain/uclibc-ng/Makefile index 8d7246e97..e86c6e31f 100644 --- a/toolchain/uclibc-ng/Makefile +++ b/toolchain/uclibc-ng/Makefile @@ -166,11 +166,11 @@ endif # arc ifeq ($(ADK_TARGET_ARCH_ARC),y) -ifeq ($(ADK_TARGET_CPU_ARC_ARC700),y) +ifeq ($(ADK_CPU_ARC700),y) $(SED) 's/.*\(CONFIG_ARC_CPU_HS\).*/# \1 is not set/' ${WRKBUILD}/.config $(SED) 's/.*\(CONFIG_ARC_CPU_700\).*/\1=y/' ${WRKBUILD}/.config endif -ifeq ($(ADK_TARGET_CPU_ARC_ARC_HS),y) +ifeq ($(ADK_CPU_ARC_HS),y) $(SED) 's/.*\(CONFIG_ARC_CPU_700\).*/# \1 is not set/' ${WRKBUILD}/.config $(SED) 's/.*\(CONFIG_ARC_CPU_HS\).*/\1=y/' ${WRKBUILD}/.config endif |