From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 75975 invoked by alias); 12 Jul 2018 10:27:15 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 75652 invoked by uid 89); 12 Jul 2018 10:27:13 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.6 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,KAM_MANYTO,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=HTo:U*andrew X-HELO: ATCSQR.andestech.com From: Zong Li To: , , , , , CC: , Zong Li Subject: [PATCH 2/9] RISC-V: Add dynamic loader for the 32 bit Date: Thu, 12 Jul 2018 10:27:00 -0000 Message-ID: <2b754547c46ccdc4e0426c80ec6183773be0db2e.1531384754.git.zong@andestech.com> In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain X-DNSRBL: X-MAIL:ATCSQR.andestech.com w6CASEO9016650 X-SW-Source: 2018-07/txt/msg00313.txt.bz2 Add the LD_SO_ABI definition of the 32 bit RISC-V --- sysdeps/unix/sysv/linux/riscv/ldconfig.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysdeps/unix/sysv/linux/riscv/ldconfig.h b/sysdeps/unix/sysv/linux/riscv/ldconfig.h index 0ca798a..088c201 100644 --- a/sysdeps/unix/sysv/linux/riscv/ldconfig.h +++ b/sysdeps/unix/sysv/linux/riscv/ldconfig.h @@ -24,7 +24,7 @@ #if __riscv_xlen == 64 # define LD_SO_ABI "riscv64-lp64" #else -# error "rv32i-based targets are not supported" +# define LD_SO_ABI "riscv32-ilp32" #endif #define SYSDEP_KNOWN_INTERPRETER_NAMES \ -- 2.7.4