- add a macro to check for ld and as flags
[oweals/busybox.git] / Rules.mak
1 # Rules.make for busybox
2 #
3 # Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
4 #
5 # Licensed under GPLv2, see the file LICENSE in this tarball for details.
6 #
7
8 # Pull in the user's busybox configuration
9 ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
10 -include $(top_builddir)/.config
11 endif
12
13 #--------------------------------------------------------
14 PROG      := busybox
15 MAJOR_VERSION   :=1
16 MINOR_VERSION   :=1
17 SUBLEVEL_VERSION:=1
18 EXTRAVERSION    :=-pre0
19 VERSION   :=$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL_VERSION)$(EXTRAVERSION)
20 BUILDTIME := $(shell TZ=UTC date -u "+%Y.%m.%d-%H:%M%z")
21
22
23 #--------------------------------------------------------
24 # With a modern GNU make(1) (highly recommended, that's what all the
25 # developers use), all of the following configuration values can be
26 # overridden at the command line.  For example:
27 #   make CROSS=powerpc-linux- top_srcdir="$HOME/busybox" PREFIX=/mnt/app
28 #--------------------------------------------------------
29
30 # If you are running a cross compiler, you will want to set 'CROSS'
31 # to something more interesting...  Target architecture is determined
32 # by asking the CC compiler what arch it compiles things for, so unless
33 # your compiler is broken, you should not need to specify TARGET_ARCH
34 CROSS           =$(subst ",, $(strip $(CROSS_COMPILER_PREFIX)))
35 CC             = $(CROSS)gcc
36 AR             = $(CROSS)ar
37 AS             = $(CROSS)as
38 LD             = $(CROSS)ld
39 NM             = $(CROSS)nm
40 STRIP          = $(CROSS)strip
41 CPP            = $(CC) -E
42 # MAKEFILES      = $(top_builddir)/.config
43 RM             = rm
44 RM_F           = $(RM) -f
45 LN             = ln
46 LN_S           = $(LN) -s
47 MKDIR          = mkdir
48 MKDIR_P        = $(MKDIR) -p
49 MV             = mv
50 CP             = cp
51
52
53 # What OS are you compiling busybox for?  This allows you to include
54 # OS specific things, syscall overrides, etc.
55 TARGET_OS=linux
56
57 # Select the compiler needed to build binaries for your development system
58 HOSTCC    = gcc
59 HOSTCFLAGS= -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
60
61 # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc.
62 LC_ALL:= C
63
64 # If you want to add some simple compiler switches (like -march=i686),
65 # especially from the command line, use this instead of CFLAGS directly.
66 # For optimization overrides, it's better still to set OPTIMIZATION.
67 CFLAGS_EXTRA=$(subst ",, $(strip $(EXTRA_CFLAGS_OPTIONS)))
68
69 # To compile vs some other alternative libc, you may need to use/adjust
70 # the following lines to meet your needs...
71 #
72 # If you are using Red Hat 6.x with the compatible RPMs (for developing under
73 # Red Hat 5.x and glibc 2.0) uncomment the following.  Be sure to read about
74 # using the compatible RPMs (compat-*) at http://www.redhat.com !
75 #LIBCDIR:=/usr/i386-glibc20-linux
76 #
77 # For other libraries, you are on your own.  But these may (or may not) help...
78 #LDFLAGS+=-nostdlib
79 #LIBRARIES:=$(LIBCDIR)/lib/libc.a -lgcc
80 #CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR) -funsigned-char
81 #GCCINCDIR:=$(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
82
83 WARNINGS=-Wall -Wstrict-prototypes -Wshadow
84 CFLAGS+=-I$(top_builddir)/include -I$(top_srcdir)/include -I$(srcdir)
85
86 ARFLAGS=cru
87
88
89 # gcc centric. Perhaps fiddle with findstring gcc,$(CC) for the rest
90 # get the CC MAJOR/MINOR version
91 CC_MAJOR:=$(shell printf "%02d" $(shell echo __GNUC__ | $(CC) -E -xc - | tail -n 1))
92 CC_MINOR:=$(shell printf "%02d" $(shell echo __GNUC_MINOR__ | $(CC) -E -xc - | tail -n 1))
93
94 #--------------------------------------------------------
95 export VERSION BUILDTIME HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP
96 ifeq ($(strip $(TARGET_ARCH)),)
97 TARGET_ARCH:=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \
98                 -e 's/i.86/i386/' \
99                 -e 's/sparc.*/sparc/' \
100                 -e 's/arm.*/arm/g' \
101                 -e 's/m68k.*/m68k/' \
102                 -e 's/ppc/powerpc/g' \
103                 -e 's/v850.*/v850/g' \
104                 -e 's/sh[234]/sh/' \
105                 -e 's/mips-.*/mips/' \
106                 -e 's/mipsel-.*/mipsel/' \
107                 -e 's/cris.*/cris/' \
108                 )
109 endif
110
111 # A nifty macro to make testing gcc features easier
112 check_gcc=$(shell \
113         if [ "$(1)" != "" ]; then \
114                 if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
115                 then echo "$(1)"; else echo "$(2)"; fi \
116         fi)
117
118 # A not very robust macro to check for available ld flags
119 check_ld=$(shell \
120         echo "checking='$(1)'" >> foo.txt ; \
121         if [ "x$(1)" != "x" ]; then \
122                 $(LD) --help | grep -q \\$(1) && echo "-Wl,$(1)$(2)" ; \
123         fi)
124
125 # A not very robust macro to check for available as flags
126 check_as=$(shell \
127         if [ "x$(1)" != "x" ]; then \
128                 $(AS) --help | grep -q "\\$(1)" && echo "-Wa,$(1)$(2)" ; \
129         fi)
130
131
132 # Setup some shortcuts so that silent mode is silent like it should be
133 ifeq ($(subst s,,$(MAKEFLAGS)),$(MAKEFLAGS))
134 export MAKE_IS_SILENT=n
135 SECHO=@echo
136 else
137 export MAKE_IS_SILENT=y
138 SECHO=-@false
139 endif
140
141 #CFLAGS+=$(call check_gcc,-funsigned-char,)
142
143 CFLAGS+=$(call check_gcc,-mmax-stack-frame=256,)
144
145 #--------------------------------------------------------
146 # Arch specific compiler optimization stuff should go here.
147 # Unless you want to override the defaults, do not set anything
148 # for OPTIMIZATION...
149
150 # use '-Os' optimization if available, else use -O2
151 OPTIMIZATION:=$(call check_gcc,-Os,-O2)
152
153 ifeq ($(CONFIG_BUILD_AT_ONCE),y)
154 # gcc 2.95 exits with 0 for "unrecognized option"
155 ifeq ($(strip $(shell [ $(CC_MAJOR) -ge 3 ] ; echo $$?)),0)
156         OPTIMIZATION+=$(call check_gcc,--combine,)
157 endif
158 OPTIMIZATION+=$(call check_gcc,-funit-at-a-time,)
159 PROG_CFLAGS+=$(call check_gcc,-fwhole-program,)
160 endif # CONFIG_BUILD_AT_ONCE
161
162 LIB_LDFLAGS:=$(call check_ld,--enable-new-dtags,)
163 #LIB_LDFLAGS+=$(call check_ld,--reduce-memory-overheads,)
164 #LIB_LDFLAGS+=$(call check_ld,--as-needed,)
165 #LIB_LDFLAGS+=$(call check_ld,--warn-shared-textrel,)
166
167
168 # Some nice architecture specific optimizations
169 ifeq ($(strip $(TARGET_ARCH)),arm)
170         OPTIMIZATION+=-fstrict-aliasing
171 endif
172 ifeq ($(strip $(TARGET_ARCH)),i386)
173         OPTIMIZATION+=$(call check_gcc,-march=i386,)
174 # gcc-4.0 and older seem to suffer from these
175 ifneq ($(strip $(shell [ $(CC_MAJOR) -ge 4 -a $(CC_MINOR) -ge 1 ] ; echo $$?)),0)
176         OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,)
177         OPTIMIZATION+=$(call check_gcc,-falign-functions=0 -falign-jumps=0 -falign-loops=0,\
178                 -malign-functions=0 -malign-jumps=0 -malign-loops=0)
179 endif # gcc-4.0 and older
180
181 # gcc-4.1 and beyond seem to benefit from these
182 ifeq ($(strip $(shell [ $(CC_MAJOR) -ge 4 -a $(CC_MINOR) -ge 1 ] ; echo $$?)),0)
183         # turn off flags which hurt -Os
184         OPTIMIZATION+=$(call check_gcc,-fno-tree-loop-optimize,)
185         OPTIMIZATION+=$(call check_gcc,-fno-tree-dominator-opts,)
186         OPTIMIZATION+=$(call check_gcc,-fno-strength-reduce,)
187
188         OPTIMIZATION+=$(call check_gcc,-fno-branch-count-reg,)
189 endif # gcc-4.1 and beyond
190 endif
191 OPTIMIZATIONS:=$(OPTIMIZATION) $(call check_gcc,-fomit-frame-pointer,)
192
193 #
194 #--------------------------------------------------------
195 # If you're going to do a lot of builds with a non-vanilla configuration,
196 # it makes sense to adjust parameters above, so you can type "make"
197 # by itself, instead of following it by the same half-dozen overrides
198 # every time.  The stuff below, on the other hand, is probably less
199 # prone to casual user adjustment.
200 #
201
202 ifeq ($(strip $(CONFIG_LFS)),y)
203     # For large file summit support
204     CFLAGS+=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
205 endif
206 ifeq ($(strip $(CONFIG_DMALLOC)),y)
207     # For testing mem leaks with dmalloc
208     CFLAGS+=-DDMALLOC
209     LIBRARIES:=-ldmalloc
210 else
211     ifeq ($(strip $(CONFIG_EFENCE)),y)
212         LIBRARIES:=-lefence
213     endif
214 endif
215 ifeq ($(strip $(CONFIG_DEBUG)),y)
216     CFLAGS  +=$(WARNINGS) -g -D_GNU_SOURCE
217     LDFLAGS += $(call check_ld,-warn-common,)
218     STRIPCMD:=/bin/true -Not_stripping_since_we_are_debugging
219 else
220     CFLAGS+=$(WARNINGS) $(OPTIMIZATIONS) -D_GNU_SOURCE -DNDEBUG
221     LDFLAGS += $(call check_ld,-warn-common,)
222     LDFLAGS += $(call check_ld,--sort-common,)
223     STRIPCMD:=$(STRIP) -s --remove-section=.note --remove-section=.comment
224 endif
225 ifeq ($(strip $(CONFIG_STATIC)),y)
226     LDFLAGS += $(call check_ld,--static,)
227 #else
228 #    LIBRARIES += -ldl
229 endif
230
231 ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
232     CFLAGS_PIC:= $(call check_gcc,-fPIC,)
233 endif
234
235 ifeq ($(strip $(CONFIG_SELINUX)),y)
236     LIBRARIES += -lselinux
237 endif
238
239 ifeq ($(strip $(PREFIX)),)
240     PREFIX:=`pwd`/_install
241 endif
242
243 # Additional complications due to support for pristine source dir.
244 # Include files in the build directory should take precedence over
245 # the copy in top_srcdir, both during the compilation phase and the
246 # shell script that finds the list of object files.
247 # Work in progress by <ldoolitt@recycle.lbl.gov>.
248
249
250 OBJECTS:=$(APPLET_SOURCES:.c=.o) busybox.o usage.o applets.o
251 CFLAGS    += $(CROSS_CFLAGS)
252 ifdef BB_INIT_SCRIPT
253     CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
254 endif
255
256 # Put user-supplied flags at the end, where they
257 # have a chance of winning.
258 CFLAGS += $(CFLAGS_EXTRA)
259
260 #------------------------------------------------------------
261 # Installation options
262 ifeq ($(strip $(CONFIG_INSTALL_APPLET_HARDLINKS)),y)
263 INSTALL_OPTS=--hardlinks
264 endif
265 ifeq ($(strip $(CONFIG_INSTALL_APPLET_SYMLINKS)),y)
266 INSTALL_OPTS=--symlinks
267 endif
268 ifeq ($(strip $(CONFIG_INSTALL_APPLET_DONT)),y)
269 INSTALL_OPTS=
270 endif
271
272 .PHONY: dummy