annotate src/isl.mk @ 3928:b50d43f931b1

isl: use -no-undefined in windows build * src/isl.mk: set LDFLAGS=-no-undefined when in windows compile
author John Donoghue
date Tue, 05 May 2015 10:13:09 -0400
parents ee802fc5dd9b
children 8ed7da7e39d4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3496
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := isl
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
3926
ee802fc5dd9b gcc: update to 5.1.0, update isl, libgpg_error
John D
parents: 3589
diff changeset
6 $(PKG)_VERSION := 0.14
ee802fc5dd9b gcc: update to 5.1.0, update isl, libgpg_error
John D
parents: 3589
diff changeset
7 $(PKG)_CHECKSUM := b09e25df265c97ed54002cd811d227a9a26c5f9c
3496
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.bz2
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 $(PKG)_URL := ftp://gcc.gnu.org/pub/gcc/infrastructure/$($(PKG)_FILE)
3502
d667a65b0f2f update gcc dependencies
John W. Eaton <jwe@octave.org>
parents: 3496
diff changeset
11 $(PKG)_DEPS := build-gcc gmp
3496
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12
3928
b50d43f931b1 isl: use -no-undefined in windows build
John Donoghue
parents: 3926
diff changeset
13 ifeq ($(MXE_WINDOWS_BUILD),yes)
b50d43f931b1 isl: use -no-undefined in windows build
John Donoghue
parents: 3926
diff changeset
14 $(PKG)_EXTRA_MAKE_FLAGS="LDFLAGS='-no-undefined'"
b50d43f931b1 isl: use -no-undefined in windows build
John Donoghue
parents: 3926
diff changeset
15 endif
b50d43f931b1 isl: use -no-undefined in windows build
John Donoghue
parents: 3926
diff changeset
16
3496
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 # stick to tested versions from gcc
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 define $(PKG)_UPDATE
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 $(WGET) -q -O- 'ftp://gcc.gnu.org/pub/gcc/infrastructure/' | \
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 $(SED) -n 's,.*isl-\([0-9][^>]*\)\.tar.*,\1,p' | \
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 $(SORT) -V |
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22 tail -1
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 endef
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
24
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25 define $(PKG)_BUILD
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26 cd '$(1)' && ./configure \
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28 $(ENABLE_SHARED_OR_STATIC) \
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
29 --prefix='$(HOST_PREFIX)' \
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
30 --with-gmp-prefix='$(HOST_PREFIX)'
3928
b50d43f931b1 isl: use -no-undefined in windows build
John Donoghue
parents: 3926
diff changeset
31 $(MAKE) -C '$(1)' -j '$(JOBS)' $($(PKG)_EXTRA_MAKE_FLAGS)
b50d43f931b1 isl: use -no-undefined in windows build
John Donoghue
parents: 3926
diff changeset
32 $(MAKE) -C '$(1)' -j '$(JOBS)' $($(PKG)_EXTRA_MAKE_FLAGS) install
3496
3c7b3646d0b3 update to gcc 4.8.2 and allow building for MinGW-64
John W. Eaton <jwe@octave.org>
parents:
diff changeset
33 endef