forked from coolsnowwolf/lede
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The upcoming dwarves host package requires elfutils. As dependencies for tools must exist in tools, we need to move elfutils host build there. As there is at least one package that depends on this, and there is no proper way to create such dependency in the build system, build it unconditionally when not building on macOS. Signed-off-by: Stijn Tintel <[email protected]>
- Loading branch information
Showing
3 changed files
with
35 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
|
||
include $(TOPDIR)/rules.mk | ||
|
||
PKG_NAME:=elfutils | ||
PKG_VERSION:=0.186 | ||
PKG_RELEASE:=1 | ||
|
||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 | ||
PKG_SOURCE_URL:=https://sourceware.org/$(PKG_NAME)/ftp/$(PKG_VERSION) | ||
PKG_HASH:=7f6fb9149b1673d38d9178a0d3e0fb8a1ec4f53a9f4c2ff89469609879641177 | ||
|
||
PKG_LICENSE:=GPL-3.0-or-later | ||
PKG_LICENSE_FILES:=COPYING COPYING-GPLV2 COPYING-LGPLV3 | ||
PKG_CPE_ID:=cpe:/a:elfutils_project:elfutils | ||
|
||
PKG_FIXUP:=autoreconf | ||
PKG_INSTALL:=1 | ||
|
||
HOST_BUILD_DEPENDS:=argp-standalone/host musl-fts/host | ||
|
||
include $(INCLUDE_DIR)/host-build.mk | ||
|
||
HOST_CONFIGURE_ARGS += \ | ||
--disable-debuginfod \ | ||
--disable-libdebuginfod \ | ||
--disable-nls \ | ||
--disable-shared \ | ||
--without-lzma \ | ||
--without-zstd | ||
|
||
$(eval $(call HostBuild)) |