From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from vsmtp02.cm.dti.ne.jp (vsmtp.ipv6.cm.dream.jp [IPv6:2001:2e8:702::236:70:62]) by sourceware.org (Postfix) with ESMTP id 0A43E3851C14 for ; Fri, 8 May 2020 11:11:36 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 0A43E3851C14 Received: from mirage.localdomain (p4631130-ipoe.ipoe.ocn.ne.jp [180.30.20.129]) by vsmtp02.cm.dti.ne.jp (3.11v) with ESMTP AUTH id 048BBXeC020363; Fri, 8 May 2020 20:11:34 +0900 (JST) Received: from ceres.dti.ne.jp (localhost [127.0.0.1]) by mirage.localdomain (8.15.2/8.14.8) with ESMTP id 048BBXVc017692; Fri, 8 May 2020 20:11:33 +0900 (JST) Received: (from tsutsui@localhost) by ceres.dti.ne.jp (8.15.2/8.15.2/Submit) id 048BBXQZ008270; Fri, 8 May 2020 20:11:33 +0900 (JST) From: Izumi Tsutsui To: libffi-discuss@sourceware.org Cc: Izumi Tsutsui Subject: [PATCH] Add support for NetBSD/hppa and NetBSD/sh3el. Date: Fri, 8 May 2020 20:10:59 +0900 Message-Id: <20200508111059.8628-1-tsutsui@ceres.dti.ne.jp> X-Mailer: git-send-email 2.25.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libffi-discuss@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libffi-discuss mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 May 2020 11:11:39 -0000 Signed-off-by: Izumi Tsutsui --- configure.host | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.host b/configure.host index 56c8036..cbad684 100644 --- a/configure.host +++ b/configure.host @@ -60,7 +60,7 @@ case "${host}" in SOURCES="ffi.c eabi.S" ;; - hppa*-*-linux* | parisc*-*-linux* | hppa*-*-openbsd*) + hppa*-*-linux* | parisc*-*-linux* | hppa*-*-openbsd* | hppa*-*-netbsd*) TARGET=PA_LINUX; TARGETDIR=pa SOURCES="ffi.c linux.S" ;; @@ -230,7 +230,7 @@ case "${host}" in SOURCES="ffi.c sysv.S" ;; - sh-*-* | sh[34]*-*-*) + sh-*-* | shle-*-* | sh[34]*-*-*) TARGET=SH; TARGETDIR=sh SOURCES="ffi.c sysv.S" ;; -- 2.25.3