Mercurial > hg > mxe
annotate src/binutils.mk @ 3067:b11464811f7f
build shared library for pthreads
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Wed, 28 Nov 2012 20:16:38 -0500 |
parents | 47558e958113 |
children | c90f5757f351 |
rev | line source |
---|---|
2333
f653602a0500
Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents:
2159
diff
changeset
|
1 # This file is part of MXE. |
2353
99516e73b368
Move doc/index.html -> index.html
Volker Grabsch <vog@notjusthosting.com>
parents:
2349
diff
changeset
|
2 # See index.html for further information. |
414
d2a6561bcb6d
add a copyright notice and license to each source file
Volker Grabsch <vog@notjusthosting.com>
parents:
408
diff
changeset
|
3 |
306
85ffa9259036
validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents:
301
diff
changeset
|
4 PKG := binutils |
1281
3443a9b9a415
remove $(PKG)_IGNORE entries that are no longer needed
Volker Grabsch <vog@notjusthosting.com>
parents:
994
diff
changeset
|
5 $(PKG)_IGNORE := |
2852 | 6 $(PKG)_CHECKSUM := 587fca86f6c85949576f4536a90a3c76ffc1a3e1 |
2118 | 7 $(PKG)_SUBDIR := binutils-$($(PKG)_VERSION) |
505
398d63c87ef8
update version of package binutils
Volker Grabsch <vog@notjusthosting.com>
parents:
448
diff
changeset
|
8 $(PKG)_FILE := binutils-$($(PKG)_VERSION).tar.bz2 |
398d63c87ef8
update version of package binutils
Volker Grabsch <vog@notjusthosting.com>
parents:
448
diff
changeset
|
9 $(PKG)_URL := ftp://ftp.gnu.org/pub/gnu/binutils/$($(PKG)_FILE) |
398d63c87ef8
update version of package binutils
Volker Grabsch <vog@notjusthosting.com>
parents:
448
diff
changeset
|
10 $(PKG)_URL_2 := ftp://ftp.cs.tu-berlin.de/pub/gnu/binutils/$($(PKG)_FILE) |
398d63c87ef8
update version of package binutils
Volker Grabsch <vog@notjusthosting.com>
parents:
448
diff
changeset
|
11 $(PKG)_DEPS := |
115
ae21cae1b378
translated packages: mingwrt, w32api, binutils, gcc
Volker Grabsch <vog@notjusthosting.com>
parents:
diff
changeset
|
12 |
ae21cae1b378
translated packages: mingwrt, w32api, binutils, gcc
Volker Grabsch <vog@notjusthosting.com>
parents:
diff
changeset
|
13 define $(PKG)_UPDATE |
2525
4d0f3a9da57e
all packages: use $(WGET) portability variable
Tony Theodore <tonyt@logyst.com>
parents:
2365
diff
changeset
|
14 $(WGET) -q -O- 'http://ftp.gnu.org/gnu/binutils/?C=M;O=D' | \ |
994
07e346dfcd76
improved version recognition of packages binutils and gcc
Volker Grabsch <vog@notjusthosting.com>
parents:
876
diff
changeset
|
15 $(SED) -n 's,.*<a href="binutils-\([0-9][^"]*\)\.tar.*,\1,p' | \ |
1864
0ac0306fc662
Improved filtering of bad binutils versions
Volker Grabsch <vog@notjusthosting.com>
parents:
1863
diff
changeset
|
16 grep -v '^2\.1' | \ |
505
398d63c87ef8
update version of package binutils
Volker Grabsch <vog@notjusthosting.com>
parents:
448
diff
changeset
|
17 head -1 |
115
ae21cae1b378
translated packages: mingwrt, w32api, binutils, gcc
Volker Grabsch <vog@notjusthosting.com>
parents:
diff
changeset
|
18 endef |
ae21cae1b378
translated packages: mingwrt, w32api, binutils, gcc
Volker Grabsch <vog@notjusthosting.com>
parents:
diff
changeset
|
19 |
ae21cae1b378
translated packages: mingwrt, w32api, binutils, gcc
Volker Grabsch <vog@notjusthosting.com>
parents:
diff
changeset
|
20 define $(PKG)_BUILD |
2151
18d32520bcb5
take config.guess from binutils instead of gcc
Mark Brand <mabrand@mabrand.nl>
parents:
2118
diff
changeset
|
21 # install config.guess for general use |
18d32520bcb5
take config.guess from binutils instead of gcc
Mark Brand <mabrand@mabrand.nl>
parents:
2118
diff
changeset
|
22 $(INSTALL) -d '$(PREFIX)/bin' |
18d32520bcb5
take config.guess from binutils instead of gcc
Mark Brand <mabrand@mabrand.nl>
parents:
2118
diff
changeset
|
23 $(INSTALL) -m755 '$(1)/config.guess' '$(PREFIX)/bin/' |
18d32520bcb5
take config.guess from binutils instead of gcc
Mark Brand <mabrand@mabrand.nl>
parents:
2118
diff
changeset
|
24 |
2158
3a7782db4d61
install target-specific autotools config.site file
Tony Theodore <tonyt@logyst.com>
parents:
2153
diff
changeset
|
25 # install target-specific autotools config file |
3a7782db4d61
install target-specific autotools config.site file
Tony Theodore <tonyt@logyst.com>
parents:
2153
diff
changeset
|
26 $(INSTALL) -d '$(PREFIX)/$(TARGET)/share' |
3a7782db4d61
install target-specific autotools config.site file
Tony Theodore <tonyt@logyst.com>
parents:
2153
diff
changeset
|
27 echo "ac_cv_build=`$(1)/config.guess`" > '$(PREFIX)/$(TARGET)/share/config.site' |
3a7782db4d61
install target-specific autotools config.site file
Tony Theodore <tonyt@logyst.com>
parents:
2153
diff
changeset
|
28 |
131
ed98f6b98e35
use $(1) instead of $(2) to address to temporary build dir
Volker Grabsch <vog@notjusthosting.com>
parents:
115
diff
changeset
|
29 cd '$(1)' && ./configure \ |
115
ae21cae1b378
translated packages: mingwrt, w32api, binutils, gcc
Volker Grabsch <vog@notjusthosting.com>
parents:
diff
changeset
|
30 --target='$(TARGET)' \ |
2151
18d32520bcb5
take config.guess from binutils instead of gcc
Mark Brand <mabrand@mabrand.nl>
parents:
2118
diff
changeset
|
31 --build="`config.guess`" \ |
115
ae21cae1b378
translated packages: mingwrt, w32api, binutils, gcc
Volker Grabsch <vog@notjusthosting.com>
parents:
diff
changeset
|
32 --prefix='$(PREFIX)' \ |
ae21cae1b378
translated packages: mingwrt, w32api, binutils, gcc
Volker Grabsch <vog@notjusthosting.com>
parents:
diff
changeset
|
33 --with-gcc \ |
ae21cae1b378
translated packages: mingwrt, w32api, binutils, gcc
Volker Grabsch <vog@notjusthosting.com>
parents:
diff
changeset
|
34 --with-gnu-ld \ |
ae21cae1b378
translated packages: mingwrt, w32api, binutils, gcc
Volker Grabsch <vog@notjusthosting.com>
parents:
diff
changeset
|
35 --with-gnu-as \ |
ae21cae1b378
translated packages: mingwrt, w32api, binutils, gcc
Volker Grabsch <vog@notjusthosting.com>
parents:
diff
changeset
|
36 --disable-nls \ |
3036
47558e958113
Allow static/shared libraries to be configured in top-level Makefile.
John W. Eaton <jwe@octave.org>
parents:
2852
diff
changeset
|
37 $(ENABLE_SHARED_OR_STATIC) \ |
543
c1a03ad713d1
portability fix to packages binutils and gcc for MacOS 10.6
Volker Grabsch <vog@notjusthosting.com>
parents:
505
diff
changeset
|
38 --disable-werror |
173
b279dbda0f54
improved parallel builds of packages 'binutils', 'pdflib_lite' and 'sdl'
Volker Grabsch <vog@notjusthosting.com>
parents:
143
diff
changeset
|
39 $(MAKE) -C '$(1)' -j '$(JOBS)' |
b279dbda0f54
improved parallel builds of packages 'binutils', 'pdflib_lite' and 'sdl'
Volker Grabsch <vog@notjusthosting.com>
parents:
143
diff
changeset
|
40 $(MAKE) -C '$(1)' -j 1 install |
115
ae21cae1b378
translated packages: mingwrt, w32api, binutils, gcc
Volker Grabsch <vog@notjusthosting.com>
parents:
diff
changeset
|
41 endef |