From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) by sourceware.org (Postfix) with ESMTP id 56B44386FC0C for ; Fri, 14 May 2021 05:59:16 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 56B44386FC0C Received: from vapier.lan (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id 8AA19335C5A for ; Fri, 14 May 2021 05:59:15 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Subject: [PATCH] sim: install library header files Date: Fri, 14 May 2021 01:59:09 -0400 Message-Id: <20210514055909.21519-1-vapier@gentoo.org> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.3 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, RCVD_IN_DNSWL_LOW, SPF_HELO_PASS, SPF_PASS, TXREP 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: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 May 2021 05:59:17 -0000 We install libsim.a for people to link against, but haven't been installing the header files to for its API. Export them! --- sim/Makefile.am | 4 ++ sim/Makefile.in | 106 +++++++++++++++++++++++++++++++----------------- 2 files changed, 73 insertions(+), 37 deletions(-) diff --git a/sim/Makefile.am b/sim/Makefile.am index 6696adc304a4..80a6d310bd59 100644 --- a/sim/Makefile.am +++ b/sim/Makefile.am @@ -51,6 +51,10 @@ nltvals: $(abs_srcdir)/common/gennltvals.py --cpp "$(CPP)" --output nltvals.def --srcroot $(srcroot) $(SHELL) $(srcroot)/move-if-change nltvals.def $(abs_srcdir)/common/nltvals.def +pkginclude_HEADERS = \ + $(srcroot)/include/sim/callback.h \ + $(srcroot)/include/sim/sim.h + if SIM_ENABLE_IGEN include igen/local.mk endif -- 2.31.1