annotate src/native-gcc.mk @ 3710:1220a9158bc1

make building 64-bit Windows binaries independent from enabling 64-bit indexing in Octave
author John W. Eaton <jwe@octave.org>
date Sun, 07 Sep 2014 06:42:40 -0400
parents e4ce23a86225
children 992be3109433
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2915
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := native-gcc
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
3684
0ea89e795112 gcc: update to 4.9.1 from mxe_devel.
John Donoghue
parents: 3590
diff changeset
6 $(PKG)_VERSION := 4.9.1
0ea89e795112 gcc: update to 4.9.1 from mxe_devel.
John Donoghue
parents: 3590
diff changeset
7 $(PKG)_CHECKSUM := 3f303f403053f0ce79530dae832811ecef91197e
2915
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 $(PKG)_SUBDIR := gcc-$($(PKG)_VERSION)
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 $(PKG)_FILE := gcc-$($(PKG)_VERSION).tar.bz2
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 $(PKG)_URL := ftp://ftp.gnu.org/pub/gnu/gcc/gcc-$($(PKG)_VERSION)/$($(PKG)_FILE)
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 $(PKG)_URL_2 := ftp://ftp.mirrorservice.org/sites/sourceware.org/pub/gcc/releases/gcc-$($(PKG)_VERSION)/$($(PKG)_FILE)
3511
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
12
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
13 $(PKG)_DEPS := native-binutils cloog gmp isl mpc mpfr
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
14 ifeq ($(MXE_SYSTEM),mingw)
3523
1b350761007f allow native-gcc build to succeed
John W. Eaton <jwe@octave.org>
parents: 3511
diff changeset
15 $(PKG)_DEPS += mingw-w64
3511
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
16 endif
2915
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 ifneq ($(BUILD_SHARED),yes)
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 $(PKG)_STATIC_FLAG := --static
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 endif
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20
3511
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
21 ifeq ($(MXE_SYSTEM),mingw)
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
22 $(PKG)_SYSDEP_CONFIGURE_OPTIONS := \
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
23 --enable-version-specific-runtime-libs \
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
24 --disable-nls \
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
25 --without-x \
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
26 --disable-win32-registry \
3554
b1ca68ddd02c build native-gcc using untared dependancies within gcc source tree
John Donoghue <john.donoghue@ieee.org>
parents: 3523
diff changeset
27 --with-native-system-header-dir='$(HOST_PREFIX)/include' \
b1ca68ddd02c build native-gcc using untared dependancies within gcc source tree
John Donoghue <john.donoghue@ieee.org>
parents: 3523
diff changeset
28 --enable-threads=win32
3710
1220a9158bc1 make building 64-bit Windows binaries independent from enabling 64-bit indexing in Octave
John W. Eaton <jwe@octave.org>
parents: 3695
diff changeset
29 ifneq ($(ENABLE_WINDOWS_64),yes)
3511
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
30 $(PKG)_SYSDEP_CONFIGURE_OPTIONS += \
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
31 --disable-sjlj-exceptions
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
32 endif
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
33 endif
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
34
2915
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
35 define $(PKG)_UPDATE
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
36 $(WGET) -q -O- 'http://ftp.gnu.org/gnu/gcc/?C=M;O=D' | \
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
37 $(SED) -n 's,.*<a href="gcc-\([0-9][^"]*\)/".*,\1,p' | \
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
38 grep -v '^4\.[543]\.' | \
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
39 head -1
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
40 endef
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
41
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
42 define $(PKG)_BUILD
3511
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
43 # configure gcc
2915
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
44 mkdir '$(1).build'
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
45 cd '$(1).build' && '$(1)/configure' \
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
46 --target='$(TARGET)' \
3013
bcc26ffe9a0f use variable for --host and --build configure arguments
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
47 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
3511
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
48 --prefix='$(HOST_PREFIX)' \
3016
c94807091658 native-gcc.mk: don't build objective C compiler
John W. Eaton <jwe@octave.org>
parents: 3014
diff changeset
49 --enable-languages='c,c++,fortran' \
3511
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
50 --disable-multilib \
3695
e4ce23a86225 disable libsanitizer for gcc builds
John W. Eaton <jwe@octave.org>
parents: 3684
diff changeset
51 --disable-libsanitizer \
3511
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
52 $($(PKG)_SYSDEP_CONFIGURE_OPTIONS) \
2915
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
53 $(ENABLE_SHARED_OR_STATIC) \
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
54 --disable-libgomp \
3590
6751799320ce native-gcc: update to 4.9.0
John Donoghue
parents: 3559
diff changeset
55 --with-cloog='$(HOST_PREFIX)' \
6751799320ce native-gcc: update to 4.9.0
John Donoghue
parents: 3559
diff changeset
56 --with-gmp='$(HOST_PREFIX)' \
6751799320ce native-gcc: update to 4.9.0
John Donoghue
parents: 3559
diff changeset
57 --with-isl='$(HOST_PREFIX)' \
6751799320ce native-gcc: update to 4.9.0
John Donoghue
parents: 3559
diff changeset
58 --with-mpc='$(HOST_PREFIX)' \
6751799320ce native-gcc: update to 4.9.0
John Donoghue
parents: 3559
diff changeset
59 --with-mpfr='$(HOST_PREFIX)' \
2915
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
60 $(shell [ `uname -s` == Darwin ] && echo "LDFLAGS='-Wl,-no_pie'")
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
61
3511
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
62 $(MAKE) -C '$(1).build' -j '$(JOBS)'
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
63 $(MAKE) -C '$(1).build' -j 1 install
3559
7fe77aaeb070 native-gcc.mk: move libgcc_s.a to directory searched by ld
John W. Eaton <jwe@octave.org>
parents: 3556
diff changeset
64
7fe77aaeb070 native-gcc.mk: move libgcc_s.a to directory searched by ld
John W. Eaton <jwe@octave.org>
parents: 3556
diff changeset
65 if [ -f $(HOST_PREFIX)/lib/gcc/$(TARGET)/lib/libgcc_s.a ]; then \
7fe77aaeb070 native-gcc.mk: move libgcc_s.a to directory searched by ld
John W. Eaton <jwe@octave.org>
parents: 3556
diff changeset
66 mv $(HOST_PREFIX)/lib/gcc/$(TARGET)/lib/libgcc_s.a $(HOST_PREFIX)/lib/gcc/$(TARGET)/$($(PKG)_VERSION)/libgcc_s.a; \
7fe77aaeb070 native-gcc.mk: move libgcc_s.a to directory searched by ld
John W. Eaton <jwe@octave.org>
parents: 3556
diff changeset
67 fi
2915
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
68 endef