blob: 2fe2af03602be09cc420a812854e8bcf63c6ae07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# This file is part of MXE.
# See index.html for further information.
PKG := bfd
$(PKG)_IGNORE = $(binutils_IGNORE)
$(PKG)_VERSION = $(binutils_VERSION)
$(PKG)_CHECKSUM = $(binutils_CHECKSUM)
$(PKG)_SUBDIR = $(binutils_SUBDIR)
$(PKG)_FILE = $(binutils_FILE)
$(PKG)_URL = $(binutils_URL)
$(PKG)_URL_2 = $(binutils_URL_2)
$(PKG)_DEPS := gcc
define $(PKG)_UPDATE
echo $(binutils_VERSION)
endef
define $(PKG)_BUILD
cd '$(1)/bfd' && ./configure \
--host='$(TARGET)' \
--target='$(TARGET)' \
--prefix='$(PREFIX)/$(TARGET)' \
--enable-install-libbfd \
--disable-shared
$(MAKE) -C '$(1)/bfd' -j '$(JOBS)'
$(MAKE) -C '$(1)/bfd' -j 1 install
endef
$(PKG)_BUILD_SHARED =
|