-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.in
420 lines (374 loc) · 13.9 KB
/
Makefile.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
# -------------------------------
# Standard Autoconf-set variables
# -------------------------------
VPATH=@srcdir@
build_alias=@build_alias@
build_vendor=@build_vendor@
build_os=@build_os@
build=@build@
host_alias=@host_alias@
host_vendor=@host_vendor@
host_os=@host_os@
host=@host@
target_alias=@target_alias@
target_vendor=@target_vendor@
target_os=@target_os@
target_cpu=@target_cpu@
target=@target@
program_transform_name = @program_transform_name@
prefix = @prefix@
exec_prefix = @exec_prefix@
srcdir = @srcdir@
bindir = @bindir@
sbindir = @sbindir@
libexecdir = @libexecdir@
datadir = @datadir@
sysconfdir = @sysconfdir@
sharedstatedir = @sharedstatedir@
localstatedir = @localstatedir@
libdir = @libdir@
includedir = @includedir@
oldincludedir = @oldincludedir@
infodir = @infodir@
datarootdir = @datarootdir@
docdir = @docdir@
pdfdir = @pdfdir@
htmldir = @htmldir@
mandir = @mandir@
builddir = @builddir@
abs_builddir = @abs_builddir@
#
# miscellaneous variables
#
TOPLEVEL_CONFIGURE_ARGUMENTS:=@TOPLEVEL_CONFIGURE_ARGUMENTS@
baseargs = @baseargs@
GCC_MIN_VERSION_4_3_0:=@GCC_MIN_VERSION_4_3_0@
GCC_MIN_VERSION_4_5_0:=@GCC_MIN_VERSION_4_5_0@
PACKAGE_TO_SRCDIR:=@package_to_srcdir@
BUILD_ANDROID_GCC:=@BUILD_ANDROID_GCC@
GDB_TARGET:=@GDB_TARGET@
# We need to figure out how to get to top level source directory from
# a package build directory.
# For host modules, accept cache file option, or specification as blank.
BINUTILS_VERSION=binutils-@BINUTILS_VERSION@
GCC_VERSION=gcc-@GCC_VERSION@
NEWLIB_VERSION=newlib-@NEWLIB_VERSION@
GMP_VERSION=gmp-@GMP_VERSION@
MPFR_VERSION=mpfr-@MPFR_VERSION@
MPC_VERSION=mpc-@MPC_VERSION@
PPL_VERSION=ppl-@PPL_VERSION@
CLOOG_VERSION=cloog-@CLOOG_VERSION@
GDB_VERSION=gdb-@GDB_VERSION@
STAMP=touch
TARGET_BINUTILS_BUILDDIR=$(abs_builddir)/$(BINUTILS_VERSION)
TARGET_GCC_BUILDDIR=$(abs_builddir)/$(GCC_VERSION)
TEMP_INSTALLDIR=$(abs_builddir)/temp-install
# Figure out where to find the ld binary.
FIND_TARGET_LD=\
`[ -d $(TARGET_BINUTILS_BUILDDIR)/gold ] && echo "gold" || echo "ld"`
# We export these insteading when configuring target gcc and newlib
TARGET_BINUTILS_EXPORTS= \
export AS_FOR_TARGET=$(TARGET_BINUTILS_BUILDDIR)/gas/as-new \
LD_FOR_TARGET=$(TARGET_BINUTILS_BUILDDIR)/$(FIND_TARGET_LD)/ld-new \
AR_FOR_TARGET=$(TARGET_BINUTILS_BUILDDIR)/binutils/ar \
NM_FOR_TARGET=$(TARGET_BINUTILS_BUILDDIR)/binutils/nm-new \
STRIP_FOR_TARGET=$(TARGET_BINUTILS_BUILDDIR)/binutils/strip-new \
RANLIB_FOR_TARGET=$(TARGET_BINUTILS_BUILDDIR)/binutils/ranlib \
OBJDUMP_FOR_TARGET=$(TARGET_BINUTILS_BUILDDIR)/binutils/objdump
TARGET_MINIMAL_GCC_EXPORTS= \
export CC_FOR_TARGET="$(TARGET_GCC_BUILDDIR)/gcc/xgcc \
-B $(TARGET_GCC_BUILDDIR)/gcc \
-isystem $(TARGET_GCC_BUILDDIR)/gcc/include-fixed \
-isystem $(TARGET_GCC_BUILDDIR)/gcc/include"
#
# We need -Os as the overrides below interfere with --enable-target-optspace.
# We also need -mandroid for for target libraries to pass linking test
# in configuration.
#
# To build libstdc++ with RTTI and exceptions do:
#
#export CFLAGS_FOR_TARGET=-fexceptions
#export CXXFLAGS_FOR_TARGET=-frtti
#
CFLAGS_FOR_TARGET+= -O2 -Os -g
CXXFLAGS_FOR_TARGET+=$(CFLAGS_FOR_TARGET)
LDFLAGS_FOR_TARGET=
# Helper
prefix-list = $(foreach e, $(2), $(join $1, $e))
# find source directory for package. This can either be <srcdir>/<package>
# or <objdir>/temp-src/<package>
find-package-srcdir = $(shell \
if [ -f $(srcdir)/../$(firstword $(subst -, ,$1))/$(strip $1)/configure ]; then \
echo $(PACKAGE_TO_SRCDIR)/../$(firstword $(subst -, ,$1))/$(strip $1); \
elif [ -f $(abs_builddir)/temp-src/$(strip $1)/configure ]; then \
echo $(abs_builddir)/temp-src/$(strip $1) ; \
else \
echo 'error cannot find $(strip $1)' ; \
fi)
#
# Make rules
#
.PHONY: all clean
all: build
# top level
build: build-target-binutils build-target-gcc build-target-gdb
install: install-target-binutils install-target-gcc install-target-gdb
# target binutils rules
.PHONY: config-target-binutils build-target-binutils install-target-binutils
config-target-binutils: stmp-config-target-binutils
# We do not want to enable shared libraries in binutils
BINUTILS_CONFIG_ARGS=--prefix=$(prefix) \
--target=${target_alias} --host=${host} --build=${build} \
$(baseargs) --disable-shared \
--disable-nls
stmp-config-target-binutils: config.status
([ -d ${BINUTILS_VERSION} ] || \
mkdir ${BINUTILS_VERSION}) && \
(cd ${BINUTILS_VERSION} ; \
$(call find-package-srcdir, ${BINUTILS_VERSION})/configure \
$(BINUTILS_CONFIG_ARGS)) && \
$(STAMP) $@
build-target-binutils: stmp-build-target-binutils
stmp-build-target-binutils: stmp-config-target-binutils
$(MAKE) -j4 -C ${BINUTILS_VERSION} && $(STAMP) $@
install-target-binutils: stmp-build-target-binutils
$(MAKE) -C ${BINUTILS_VERSION} install
# target gcc rules
.PHONY: config-target-gcc build-target-gcc install-target-gcc
config-target-gcc: stmp-config-target-gcc
GCC_CONFIG_ARGS=--prefix=$(prefix) \
--target=${target_alias} --host=${host} --build=${build} \
--enable-languages=c,c++ \
--with-pkgversion='intersectRedstar Mjǫlnir'
# For gcc versions 4.3.0 and later, gmp and mpfr are required.
# Also build libgcc is a seperate sub-target in 4.3.0+.
ifeq ($(GCC_MIN_VERSION_4_3_0),yes)
stmp-config-target-gcc: stmp-install-host-gmp stmp-install-host-mpfr \
stmp-install-host-ppl stmp-install-host-cloog
GCC_CONFIG_ARGS += --with-gmp=$(TEMP_INSTALLDIR) --with-mpfr=$(TEMP_INSTALLDIR) \
--with-ppl=$(TEMP_INSTALLDIR) --with-cloog=$(TEMP_INSTALLDIR)
endif
# For gcc versions 4.5.0 and higher, mpc is required.
ifeq ($(GCC_MIN_VERSION_4_5_0),yes)
stmp-config-target-gcc: stmp-install-host-mpc
GCC_CONFIG_ARGS += --with-mpc=$(TEMP_INSTALLDIR)
endif
# Add Android specific gcc options.
# FIXME: These should be overridable by configure options.
# Target indenpendent Android gcc options.
ifeq ($(BUILD_ANDROID_GCC),yes)
GCC_CONFIG_ARGS += $(GCC_CONFIG_LIBSTDCXX_V3) --disable-libssp \
--enable-threads --disable-nls --disable-libmudflap --disable-libgomp \
--disable-libstdc__-v3 --disable-sjlj-exceptions --disable-shared \
--disable-tls
CFLAGS_FOR_TARGET += -DTARGET_POSIX_IO -fno-short-enums
# ARM specific options.
ifeq ($(target_cpu),arm)
GCC_CONFIG_ARGS += --with-float=hard --with-fpu=neon --with-arch=armv7-a --with-tune=cortex-a9 \
--enable-target-optspace
ifneq ($(target_os),linux-androideabi)
GCC_CONFIG_ARGS += --with-abi=aapcs
endif
endif
endif
# We add the baseargs and the end so that they override any default args
GCC_CONFIG_ARGS += $(baseargs)
# We have to add -mandroid in target CFLAGS and CXXFLAGS
stmp-config-target-gcc: config.status stmp-build-target-binutils
([ -d ${GCC_VERSION} ] || \
mkdir ${GCC_VERSION}) && \
(cd ${GCC_VERSION} ; \
$(TARGET_BINUTILS_EXPORTS) ; \
export CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" ; \
export CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" ; \
export LDFLAGS_FOR_TARGET="$(LDFLAGS_FOR_TARGET)" ; \
$(call find-package-srcdir, ${GCC_VERSION})/configure \
$(GCC_CONFIG_ARGS)) && \
$(STAMP) $@
build-target-gcc: stmp-build-target-gcc
stmp-build-target-gcc: stmp-config-target-gcc
$(MAKE) -j4 -C ${GCC_VERSION} \
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
LDFLAGS_FOR_TARGET="$(LDFLAGS_FOR_TARGET)" \
&& $(STAMP) $@
install-target-gcc: stmp-build-target-gcc
$(MAKE) -C ${GCC_VERSION} install
# minimal gcc rules
# minimal gcc only builds the C and C++ compilers and libgcc
# We use the full gcc configure rules.
.PHONY: build-target-minimal-gcc install-target-minimal-gcc
ifeq ("$(GCC_MIN_VERSION_4_3_0)","yes")
MINIMAL_GCC_BUILD_TARGETS:= gcc target-libgcc
else
MINIMAL_GCC_BUILD_TARGETS:= gcc
endif
build-target-minimal-gcc: stmp-build-target-minimal-gcc
stmp-build-target-minimal-gcc: stmp-config-target-gcc
$(MAKE) -j4 -C ${GCC_VERSION} \
$(call prefix-list, all-, $(MINIMAL_GCC_BUILD_TARGETS)) && \
$(STAMP) $@
install-target-minimal-gcc: stmp-build-target-minimal-gcc
$(MAKE) -C ${GCC_VERSION} \
$(call prefix-list, install-, $(MINIMAL_GCC_BUILD_TARGETS))
# target newlib rules
.PHONY: config-target-newlib build-target-newlib install-target-newlib
config-target-newlib: stmp-config-target-newlib
NEWLIB_CONFIG_ARGS=$(baseargs) --prefix=$(prefix) \
--target=${target_alias} --host=${host} --build=${build}
stmp-config-target-newlib: stmp-build-target-binutils \
stmp-build-target-minimal-gcc
([ -d ${NEWLIB_VERSION} ] || \
mkdir ${NEWLIB_VERSION}) && \
(cd ${NEWLIB_VERSION} ; \
$(TARGET_BINUTILS_EXPORTS) ; \
$(TARGET_MINIMAL_GCC_EXPORTS) ; \
$(call find-package-srcdir, ${NEWLIB_VERSION})/configure \
$(NEWLIB_CONFIG_ARGS)) && \
$(STAMP) $@
stmp-build-target-newlib: stmp-config-target-newlib
$(MAKE) -j4 -C ${NEWLIB_VERSION} && $(STAMP) $@
install-target-newlib: stmp-build-target-newlib
$(MAKE) -C ${NEWLIB_VERSION} install
# host gmp rules
.PHONY: config-host-gmp build-host-gmp install-host-gmp
config-host-gmp: stmp-config-host-gmp
GMP_CONFIG_ARGS=$(baseargs) --prefix=$(TEMP_INSTALLDIR) --disable-shared \
--host=${host} --build=${build} \
--enable-cxx
stmp-config-host-gmp: config.status
([ -d ${GMP_VERSION} ] || \
mkdir ${GMP_VERSION}) && \
(cd ${GMP_VERSION} ; \
$(call find-package-srcdir, ${GMP_VERSION})/configure \
$(GMP_CONFIG_ARGS)) && \
$(STAMP) $@
stmp-build-host-gmp: stmp-config-host-gmp
$(MAKE) -j4 -C ${GMP_VERSION} && $(STAMP) $@
build-host-gmp: stmp-build-host-gmp
# Need -j1 to avoid a race condition in building on OS X.
stmp-install-host-gmp: stmp-build-host-gmp
$(MAKE) -C ${GMP_VERSION} install -j1 && \
$(STAMP) $@
install-host-gmp: stmp-install-host-gmp
# host mpfr rules
.PHONY: config-host-mpfr build-host-mpfr install-host-mpfr
config-host-mpfr: stmp-config-host-mpfr
MPFR_CONFIG_ARGS=$(baseargs) --prefix=$(TEMP_INSTALLDIR) --disable-shared \
--host=${host} --build=${build} --with-gmp=$(TEMP_INSTALLDIR)
stmp-config-host-mpfr: config.status stmp-install-host-gmp
([ -d ${MPFR_VERSION} ] || \
mkdir ${MPFR_VERSION}) && \
(cd ${MPFR_VERSION} ; \
$(call find-package-srcdir, ${MPFR_VERSION})/configure \
$(MPFR_CONFIG_ARGS)) && \
$(STAMP) $@
stmp-build-host-mpfr: stmp-config-host-mpfr
$(MAKE) -j4 -C ${MPFR_VERSION} && $(STAMP) $@
build-host-mpfr: stmp-build-host-mpfr
stmp-install-host-mpfr: stmp-build-host-mpfr
$(MAKE) -C ${MPFR_VERSION} install && \
$(STAMP) $@
install-host-mpfr: stmp-install-host-mpfr
# host mpc rules
.PHONY: config-host-mpc build-host-mpc install-host-mpc
config-host-mpc: stmp-config-host-mpc
MPC_CONFIG_ARGS=$(baseargs) --prefix=$(TEMP_INSTALLDIR) --disable-shared \
--host=${host} --build=${build} --with-gmp=$(TEMP_INSTALLDIR) \
--with-mpfr=$(TEMP_INSTALLDIR)
stmp-config-host-mpc: config.status stmp-install-host-gmp stmp-install-host-mpfr
([ -d ${MPC_VERSION} ] || \
mkdir ${MPC_VERSION}) && \
(cd ${MPC_VERSION} ; \
$(call find-package-srcdir, ${MPC_VERSION})/configure \
$(MPC_CONFIG_ARGS)) && \
$(STAMP) $@
stmp-build-host-mpc: stmp-config-host-mpc
$(MAKE) -j4 -C ${MPC_VERSION} && $(STAMP) $@
build-host-mpc: stmp-build-host-mpc
stmp-install-host-mpc: stmp-build-host-mpc
$(MAKE) -C ${MPC_VERSION} install && \
$(STAMP) $@
install-host-mpc: stmp-install-host-mpc
# host ppl rules
.PHONY: config-host-ppl build-host-ppl install-host-ppl
config-host-ppl: stmp-config-host-ppl
PPL_CONFIG_ARGS=$(baseargs) --prefix=$(TEMP_INSTALLDIR) --disable-shared \
--target=${target_alias} \
--host=${host} --build=${build} \
--disable-nls --with-gmp-prefix=$(TEMP_INSTALLDIR)
stmp-config-host-ppl: config.status stmp-install-host-ppl stmp-install-host-ppl
([ -d ${PPL_VERSION} ] || \
mkdir ${PPL_VERSION}) && \
(cd ${PPL_VERSION} ; \
$(call find-package-srcdir, ${PPL_VERSION})/configure \
$(PPL_CONFIG_ARGS)) && \
$(STAMP) $@
stmp-build-host-ppl: stmp-config-host-ppl
$(MAKE) -j4 -C ${PPL_VERSION} && $(STAMP) $@
build-host-ppl: stmp-build-host-ppl
stmp-install-host-ppl: stmp-build-host-ppl
$(MAKE) -C ${PPL_VERSION} install && \
$(STAMP) $@
install-host-ppl: stmp-install-host-ppl
# host cloog rules
.PHONY: config-host-cloog build-host-cloog install-host-cloog
config-host-cloog: stmp-config-host-cloog
CLOOG_CONFIG_ARGS=$(baseargs) --prefix=$(TEMP_INSTALLDIR) --disable-shared \
--target=${target_alias} \
--host=${host} --build=${build} \
--disable-nls \
--with-gmp=$(TEMP_INSTALLDIR)
stmp-config-host-cloog: config.status stmp-install-host-cloog stmp-install-host-cloog
([ -d ${CLOOG_VERSION} ] || \
mkdir ${CLOOG_VERSION}) && \
(cd ${CLOOG_VERSION} ; \
$(call find-package-srcdir, ${CLOOG_VERSION})/configure \
$(CLOOG_CONFIG_ARGS)) && \
$(STAMP) $@
stmp-build-host-cloog: stmp-config-host-cloog
$(MAKE) -j4 -C ${CLOOG_VERSION} && $(STAMP) $@
build-host-cloog: stmp-build-host-cloog
stmp-install-host-cloog: stmp-build-host-cloog
$(MAKE) -C ${CLOOG_VERSION} install && \
$(STAMP) $@
install-host-cloog: stmp-install-host-cloog
# target gdb rules
.PHONY: config-target-gdb build-target-gdb install-target-gdb
config-target-gdb: stmp-config-target-gdb
GDB_CONFIG_ARGS=$(baseargs) --prefix=$(prefix) \
--target=$(GDB_TARGET) --host=${host} --build=${build} \
--disable-nls \
--disable-sim --disable-tui
stmp-config-target-gdb: config.status
([ -d ${GDB_VERSION} ] || \
mkdir ${GDB_VERSION}) && \
(cd ${GDB_VERSION} ; \
$(call find-package-srcdir, ${GDB_VERSION})/configure \
$(GDB_CONFIG_ARGS)) && \
$(STAMP) $@
build-target-gdb: stmp-build-target-gdb
stmp-build-target-gdb: stmp-config-target-gdb
$(MAKE) -j4 -C ${GDB_VERSION} && $(STAMP) $@
install-target-gdb: stmp-build-target-gdb
$(MAKE) -C ${GDB_VERSION} install
# clean rules
.PHONY: clean
clean:
$(RM) -r $(TEMP_INSTALLDIR) stmp-build-* stmp-install-* && \
for sub in [ * ]; do \
if [ -f $$sub/Makefile ]; then \
$(MAKE) -C $$sub clean ; \
fi; \
done
.PHONY: distclean
distclean:
@$(RM) -r config.log config.status \
$(TEMP_INSTALLDIR) temp-src \
stmp-config-* stmp-build-* stmp-install-* && \
for sub in [ * ]; do \
if [ -f $$sub/config.status ]; then \
echo "Deleting " $$sub "..." && $(RM) -r $$sub ; \
fi; \
done
@$(RM) Makefile