annotate src/native-gcc.mk @ 6294:51e2a8a176e8

* src/native-gcc.mk: sort update list to get latest version
author John Donoghue <john.donoghue@ieee.org>
date Thu, 07 Jul 2022 08:31:30 -0400
parents 6e379d14707d
children 717b4e4d651a
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 :=
6226
6e379d14707d * src/build-gcc.mk, src/native-gcc.mk: update to v12.1.0
John Donoghue <john.donoghue@ieee.org>
parents: 6178
diff changeset
6 $(PKG)_VERSION := 12.1.0
6e379d14707d * src/build-gcc.mk, src/native-gcc.mk: update to v12.1.0
John Donoghue <john.donoghue@ieee.org>
parents: 6178
diff changeset
7 $(PKG)_CHECKSUM := 81614dacd8625a3896a57df375b695dba0c75f36
2915
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 $(PKG)_SUBDIR := gcc-$($(PKG)_VERSION)
4469
575bcdc0e139 gcc: update to v7.2.0
John D
parents: 4467
diff changeset
9 $(PKG)_FILE := gcc-$($(PKG)_VERSION).tar.xz
2915
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
5327
217b0a7a5730 * src/build-gcc.mk, src/native-gcc.mk: remove dependancy on cloog
John Donoghue
parents: 5205
diff changeset
13 $(PKG)_DEPS := native-binutils gmp isl mpc mpfr
3511
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' \
4626
b864dc772f15 gcc: remove multilib references
John Donoghue
parents: 4606
diff changeset
28 --enable-threads=posix \
b864dc772f15 gcc: remove multilib references
John Donoghue
parents: 4606
diff changeset
29 --disable-multilib
b864dc772f15 gcc: remove multilib references
John Donoghue
parents: 4606
diff changeset
30
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
31 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
32 $(PKG)_SYSDEP_CONFIGURE_OPTIONS += \
5500
512e69a36d09 Use SSE2 instruction set for i686-w64 target (bug #58807).
Markus Mützel <markus.muetzel@gmx.de>
parents: 5348
diff changeset
33 --disable-sjlj-exceptions \
512e69a36d09 Use SSE2 instruction set for i686-w64 target (bug #58807).
Markus Mützel <markus.muetzel@gmx.de>
parents: 5348
diff changeset
34 --with-specs='%{!mfpmath:-mfpmath=sse} %{!msse:%{!mno-sse:-msse}} %{!msse2:%{!mno-sse2:-msse2}}'
3944
d83f02205481 native-gcc: compile as multilib in win64
John Donoghue
parents: 3934
diff changeset
35 else
d83f02205481 native-gcc: compile as multilib in win64
John Donoghue
parents: 3934
diff changeset
36 $(PKG)_SYSDEP_CONFIGURE_OPTIONS += \
4626
b864dc772f15 gcc: remove multilib references
John Donoghue
parents: 4606
diff changeset
37 --enable-64bit
3511
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
38 endif
3944
d83f02205481 native-gcc: compile as multilib in win64
John Donoghue
parents: 3934
diff changeset
39 else
d83f02205481 native-gcc: compile as multilib in win64
John Donoghue
parents: 3934
diff changeset
40 $(PKG)_SYSDEP_CONFIGURE_OPTIONS += \
3981
f1cc0bdd57b6 native-gcc: compile gcc as static when using mingw64
John Donoghue
parents: 3944
diff changeset
41 $(ENABLE_SHARED_OR_STATIC) \
3944
d83f02205481 native-gcc: compile as multilib in win64
John Donoghue
parents: 3934
diff changeset
42 --disable-multilib
3511
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
43 endif
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
44
2915
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
45 define $(PKG)_UPDATE
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
46 $(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
47 $(SED) -n 's,.*<a href="gcc-\([0-9][^"]*\)/".*,\1,p' | \
6294
51e2a8a176e8 * src/native-gcc.mk: sort update list to get latest version
John Donoghue <john.donoghue@ieee.org>
parents: 6226
diff changeset
48 $(SORT) -V | \
2915
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
49 grep -v '^4\.[543]\.' | \
6294
51e2a8a176e8 * src/native-gcc.mk: sort update list to get latest version
John Donoghue <john.donoghue@ieee.org>
parents: 6226
diff changeset
50 tail -1
2915
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
51 endef
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
52
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
53 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
54 # configure gcc
2915
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
55 mkdir '$(1).build'
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
56 cd '$(1).build' && '$(1)/configure' \
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
57 --target='$(TARGET)' \
3013
bcc26ffe9a0f use variable for --host and --build configure arguments
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
58 $(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
59 --prefix='$(HOST_PREFIX)' \
3016
c94807091658 native-gcc.mk: don't build objective C compiler
John W. Eaton <jwe@octave.org>
parents: 3014
diff changeset
60 --enable-languages='c,c++,fortran' \
3695
e4ce23a86225 disable libsanitizer for gcc builds
John W. Eaton <jwe@octave.org>
parents: 3684
diff changeset
61 --disable-libsanitizer \
3511
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
62 $($(PKG)_SYSDEP_CONFIGURE_OPTIONS) \
2915
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
63 --disable-libgomp \
3719
9caae5336e92 Undo botched commit. Backed out changeset 992be3109433
John W. Eaton <jwe@octave.org>
parents: 3718
diff changeset
64 --with-cloog='$(HOST_PREFIX)' \
9caae5336e92 Undo botched commit. Backed out changeset 992be3109433
John W. Eaton <jwe@octave.org>
parents: 3718
diff changeset
65 --with-gmp='$(HOST_PREFIX)' \
9caae5336e92 Undo botched commit. Backed out changeset 992be3109433
John W. Eaton <jwe@octave.org>
parents: 3718
diff changeset
66 --with-isl='$(HOST_PREFIX)' \
9caae5336e92 Undo botched commit. Backed out changeset 992be3109433
John W. Eaton <jwe@octave.org>
parents: 3718
diff changeset
67 --with-mpc='$(HOST_PREFIX)' \
9caae5336e92 Undo botched commit. Backed out changeset 992be3109433
John W. Eaton <jwe@octave.org>
parents: 3718
diff changeset
68 --with-mpfr='$(HOST_PREFIX)' \
2915
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
69 $(shell [ `uname -s` == Darwin ] && echo "LDFLAGS='-Wl,-no_pie'")
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
70
3511
799dcef88a41 Install native binutils and gcc directly in host directory tree.
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
71 $(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
72 $(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
73
7fe77aaeb070 native-gcc.mk: move libgcc_s.a to directory searched by ld
John W. Eaton <jwe@octave.org>
parents: 3556
diff changeset
74 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
75 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
76 fi
3944
d83f02205481 native-gcc: compile as multilib in win64
John Donoghue
parents: 3934
diff changeset
77
d83f02205481 native-gcc: compile as multilib in win64
John Donoghue
parents: 3934
diff changeset
78 if [ -f $(HOST_PREFIX)/lib/gcc/$(TARGET)/lib32/libgcc_s.a ]; then \
d83f02205481 native-gcc: compile as multilib in win64
John Donoghue
parents: 3934
diff changeset
79 mv $(HOST_PREFIX)/lib/gcc/$(TARGET)/lib32/libgcc_s.a $(HOST_PREFIX)/lib/gcc/$(TARGET)/$($(PKG)_VERSION)/32/libgcc_s.a; \
d83f02205481 native-gcc: compile as multilib in win64
John Donoghue
parents: 3934
diff changeset
80 fi
d83f02205481 native-gcc: compile as multilib in win64
John Donoghue
parents: 3934
diff changeset
81
2915
74304e21f1ab native gcc and binutils
John W. Eaton <jwe@octave.org>
parents:
diff changeset
82 endef