diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2017-12-31 10:16:16 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2017-12-31 10:16:22 +0100 |
commit | 1c7ad1a115614a32ac299a9ad5341a9b4157e47b (patch) | |
tree | fb1545fdeee3c60e909c416270dbfd2a75559006 /toolchain/gcc | |
parent | ae734f6d0362055f4f26c6c2f7d86917c7d7c02f (diff) |
riscv: add specific ISA / ABI working for glibc
Diffstat (limited to 'toolchain/gcc')
-rw-r--r-- | toolchain/gcc/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile index 68a1edff8..edd301297 100644 --- a/toolchain/gcc/Makefile +++ b/toolchain/gcc/Makefile @@ -215,6 +215,10 @@ ifneq ($(ADK_TARGET_MIPS_ABI),) GCC_CONFOPTS+= --with-abi=${ADK_TARGET_MIPS_ABI} endif +ifneq ($(ADK_TARGET_ABI_RISCV),) +GCC_CONFOPTS+= --with-abi=${ADK_TARGET_ABI_RISCV} +endif + ifeq (${ADK_MAKE_PARALLEL},y) GCC_MAKEOPTS+= -j${ADK_MAKE_JOBS} endif |