]> git.ipfire.org Git - ipfire-2.x.git/blame_incremental - lfs/gcc
toolchain: cpu-type fixes.
[ipfire-2.x.git] / lfs / gcc
... / ...
CommitLineData
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007-2011 IPFire Team <info@ipfire.org> #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
27VER = 4.1.2
28
29THISAPP = gcc-$(VER)
30DL_FILE = $(THISAPP).tar.bz2
31DL_FROM = $(URL_IPFIRE)
32DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34# Normal build or /tools build.
35#
36ifeq "$(ROOT)" ""
37 TARGET = $(DIR_INFO)/$(THISAPP)
38 EXTRA_CONFIG = --prefix=/usr \
39 --libexecdir=/usr/lib \
40 --enable-shared \
41 --enable-threads=posix \
42 --enable-__cxa_atexit \
43 --enable-clocale=gnu \
44 --enable-languages=c,c++ \
45 --disable-nls
46 EXTRA_MAKE =
47 EXTRA_INSTALL =
48else
49ifeq "$(PASS)" "1"
50 TARGET = $(DIR_INFO)/$(THISAPP)-tools1
51 EXTRA_CONFIG = --prefix=/tools \
52 --with-local-prefix=/tools \
53 --disable-nls \
54 --enable-shared \
55 --enable-languages=c
56 EXTRA_MAKE = bootstrap
57 # BOOT_LDFLAGS="-static"
58 EXTRA_INSTALL =
59else
60 TARGET = $(DIR_INFO)/$(THISAPP)-tools2
61 EXTRA_CONFIG = --prefix=/tools \
62 --with-local-prefix=/tools \
63 --enable-clocale=gnu \
64 --enable-shared \
65 --enable-threads=posix \
66 --enable-__cxa_atexit \
67 --enable-languages=c,c++ \
68 --disable-libstdcxx-pch
69 EXTRA_MAKE =
70 EXTRA_INSTALL =
71endif
72endif
73
74EXTRA_CONFIG += --build=$(BUILDTARGET) --host=$(BUILDTARGET) --target=$(BUILDTARGET)
75
76###############################################################################
77# Top-level Rules
78###############################################################################
79objects = $(DL_FILE)
80
81$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
82
83$(DL_FILE)_MD5 = a4a3eb15c96030906d8494959eeda23c
84
85install : $(TARGET)
86
87check : $(patsubst %,$(DIR_CHK)/%,$(objects))
88
89download :$(patsubst %,$(DIR_DL)/%,$(objects))
90
91md5 : $(subst %,%_MD5,$(objects))
92
93###############################################################################
94# Downloading, checking, md5sum
95###############################################################################
96
97$(patsubst %,$(DIR_CHK)/%,$(objects)) :
98 @$(CHECK)
99
100$(patsubst %,$(DIR_DL)/%,$(objects)) :
101 @$(LOAD)
102
103$(subst %,%_MD5,$(objects)) :
104 @$(MD5)
105
106###############################################################################
107# Installation Details
108###############################################################################
109
110$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
111 @$(PREBUILD)
112 @rm -rf $(DIR_APP) $(DIR_SRC)/gcc-build && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
113 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-fix_linker_version_detection.patch
114 @mkdir $(DIR_SRC)/gcc-build
115ifeq "$(ROOT)" ""
116 cd $(DIR_APP) && sed -i 's/install_to_$$(INSTALL_DEST) //' libiberty/Makefile.in
117 cd $(DIR_APP) && sed -i 's/^XCFLAGS =$$/& -fomit-frame-pointer/' gcc/Makefile.in
118 cd $(DIR_APP) && sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
119 cd $(DIR_APP) && sed -i 's/@have_mktemp_command@/yes/' gcc/gccbug.in
120
121 cd $(DIR_SRC)/gcc-build && $(DIR_APP)/configure $(EXTRA_CONFIG)
122 cd $(DIR_SRC)/gcc-build && make $(MAKETUNING) $(EXTRA_MAKE)
123 cd $(DIR_SRC)/gcc-build && make $(EXTRA_INSTALL) install
124 ln -sfv ../usr/bin/cpp /lib
125 ln -sfv gcc /usr/bin/cc
126else
127ifeq "$(PASS)" "1"
128 cd $(DIR_SRC)/gcc-build && $(DIR_APP)/configure $(EXTRA_CONFIG)
129 cd $(DIR_SRC)/gcc-build && make $(MAKETUNING) $(EXTRA_MAKE)
130 cd $(DIR_SRC)/gcc-build && make $(EXTRA_INSTALL) install
131 ln -sfv gcc /tools/bin/cc
132else
133 cd $(DIR_APP) && cp -v gcc/Makefile.in{,.orig}
134 cd $(DIR_APP) && sed 's@\./fixinc\.sh@-c true@' gcc/Makefile.in.orig > gcc/Makefile.in
135 cd $(DIR_APP) && cp -v gcc/Makefile.in{,.tmp}
136 cd $(DIR_APP) && sed 's/^XCFLAGS =$\/& -fomit-frame-pointer/' gcc/Makefile.in.tmp \
137 > gcc/Makefile.in
138 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-specs-1.patch
139 cd $(DIR_SRC)/gcc-build && $(DIR_APP)/configure $(EXTRA_CONFIG)
140 cd $(DIR_SRC)/gcc-build && make $(MAKETUNING) $(EXTRA_MAKE)
141 cd $(DIR_SRC)/gcc-build && make $(EXTRA_INSTALL) install
142endif
143endif
144 @rm -rf $(DIR_APP) $(DIR_SRC)/gcc-build
145 @$(POSTBUILD)