]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - lfs/gcc
Merge commit 'ms/openvpn-n2n' into next
[people/teissler/ipfire-2.x.git] / lfs / gcc
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
25 include Config
26
27 VER = 4.1.2
28
29 THISAPP = gcc-$(VER)
30 DL_FILE = $(THISAPP).tar.bz2
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33 CFLAGS =
34 CXXFLAGS =
35
36 # Normal build or /tools build.
37 #
38 ifeq "$(ROOT)" ""
39 TARGET = $(DIR_INFO)/$(THISAPP)
40 EXTRA_CONFIG = --prefix=/usr \
41 --libexecdir=/usr/lib \
42 --enable-shared \
43 --enable-threads=posix \
44 --enable-__cxa_atexit \
45 --enable-clocale=gnu \
46 --enable-languages=c,c++ \
47 --disable-nls
48 EXTRA_MAKE =
49 EXTRA_INSTALL =
50 else
51 ifeq "$(PASS)" "1"
52 TARGET = $(DIR_INFO)/$(THISAPP)-tools1
53 EXTRA_CONFIG = --prefix=/tools \
54 --with-local-prefix=/tools \
55 --disable-nls \
56 --enable-shared \
57 --enable-languages=c
58 EXTRA_MAKE = bootstrap
59 # BOOT_LDFLAGS="-static"
60 EXTRA_INSTALL =
61 else
62 TARGET = $(DIR_INFO)/$(THISAPP)-tools2
63 EXTRA_CONFIG = --prefix=/tools \
64 --with-local-prefix=/tools \
65 --enable-clocale=gnu \
66 --enable-shared \
67 --enable-threads=posix \
68 --enable-__cxa_atexit \
69 --enable-languages=c,c++ \
70 --disable-libstdcxx-pch
71 EXTRA_MAKE =
72 EXTRA_INSTALL =
73 endif
74 endif
75
76 ###############################################################################
77 # Top-level Rules
78 ###############################################################################
79 objects = $(DL_FILE)
80
81 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
82
83 $(DL_FILE)_MD5 = a4a3eb15c96030906d8494959eeda23c
84
85 install : $(TARGET)
86
87 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
88
89 download :$(patsubst %,$(DIR_DL)/%,$(objects))
90
91 md5 : $(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
115 ifeq "$(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
126 else
127 ifeq "$(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
132 else
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
142 endif
143 endif
144 @rm -rf $(DIR_APP) $(DIR_SRC)/gcc-build
145 @$(POSTBUILD)