]> Git Repo - uclibc-ng.git/blame - Rules.mak
Improve malloc debugging support.
[uclibc-ng.git] / Rules.mak
CommitLineData
2c8e931c 1# Rules.make for uClibc
af1112c8 2#
5a653498 3# Copyright (C) 2000 by Lineo, inc.
58bd16ab 4# Copyright (C) 2000-2002 Erik Andersen <[email protected]>
af1112c8
EA
5#
6# This program is free software; you can redistribute it and/or modify it under
7# the terms of the GNU Library General Public License as published by the Free
8# Software Foundation; either version 2 of the License, or (at your option) any
9# later version.
10#
11# This program is distributed in the hope that it will be useful, but WITHOUT
12# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
91102e0d 13# FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
af1112c8
EA
14# details.
15#
4d45bcff
EA
16# You should have received a copy of the GNU Library General Public License
17# along with this program; if not, write to the Free Software Foundation, Inc.,
18# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
af1112c8 19
f149abb8
EA
20
21#--------------------------------------------------------
22# This file contains rules which are shared between multiple Makefiles.
23# All normal configuration options live in the file named ".config".
24# Don't mess with this file unless you know what you are doing.
25
26
27#--------------------------------------------------------
28# If you are running a cross compiler, you will want to set 'CROSS'
6737908f 29# to something more interesting... Target architecture is determined
f149abb8
EA
30# by asking the CC compiler what arch it compiles things for, so unless
31# your compiler is broken, you should not need to specify TARGET_ARCH
32#
33# Most people will set this stuff on the command line, i.e.
34# make CROSS=mipsel-linux-
35# will build uClibc for 'mipsel'.
36
6737908f 37CROSS=
881e6dca
EA
38CC= $(CROSS)gcc
39AR= $(CROSS)ar
40LD= $(CROSS)ld
41NM= $(CROSS)nm
42STRIPTOOL= $(CROSS)strip
6737908f
EA
43
44# Select the compiler needed to build binaries for your development system
881e6dca
EA
45NATIVE_CC=gcc
46NATIVE_CFLAGS=-O2 -Wall
6737908f 47
af1112c8 48
f149abb8
EA
49#--------------------------------------------------------
50# Nothing beyond this point should ever be touched by mere mortals.
51# Unless you hang out with the gods, you should probably leave all
52# this stuff alone.
5739992b 53MAJOR_VERSION:=0
58bd16ab 54MINOR_VERSION:=9
9dfd7d43 55SUBLEVEL:=16
58bd16ab 56VERSION:=$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL)
d79988b6
EA
57# Ensure consistent filename sort order
58LC_COLLATE:= C
59export MAJOR_VERSION MINOR_VERSION SUBLEVEL VERSION LC_COLLATE
58bd16ab 60
58bd16ab 61SHARED_FULLNAME:=libuClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so
5739992b
EA
62SHARED_MAJORNAME:=libc.so.$(MAJOR_VERSION)
63UCLIBC_LDSO:=ld-uClibc.so.$(MAJOR_VERSION)
6737908f
EA
64LIBNAME:=libc.a
65LIBC:=$(TOPDIR)libc/$(LIBNAME)
c75d8083 66
6737908f
EA
67# Pull in the user's uClibc configuration
68ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
772cb310 69include_config := 1
6737908f
EA
70-include $(TOPDIR).config
71endif
72
efe79476
EA
73# A nifty macro to make testing gcc features easier
74check_gcc=$(shell if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
75 then echo "$(1)"; else echo "$(2)"; fi)
76
8eecdc92 77# check if we have nawk, otherwise user awk
efe79476
EA
78AWK:=$(shell if [ -x /usr/bin/nawk ]; then echo "/usr/bin/nawk"; \
79 else echo "/usr/bin/awk"; fi)
8eecdc92 80
6737908f 81NATIVE_ARCH:= $(shell uname -m | sed \
47e0a806
DM
82 -e 's/i.86/i386/' \
83 -e 's/sparc.*/sparc/' \
84 -e 's/arm.*/arm/g' \
85 -e 's/m68k.*/m68k/' \
86 -e 's/ppc/powerpc/g' \
87 -e 's/v850.*/v850/g' \
59c9d20a
EA
88 -e 's/sh[234].*/sh/' \
89 -e 's/mips.*/mips/' \
6737908f 90 )
cbc40534 91ifeq ($(strip $(TARGET_ARCH)),)
6737908f 92TARGET_ARCH:=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \
47e0a806
DM
93 -e 's/i.86/i386/' \
94 -e 's/sparc.*/sparc/' \
95 -e 's/arm.*/arm/g' \
96 -e 's/m68k.*/m68k/' \
97 -e 's/ppc/powerpc/g' \
98 -e 's/v850.*/v850/g' \
99 -e 's/sh[234]/sh/' \
8d212fde
SH
100 -e 's/mips-.*/mips/' \
101 -e 's/mipsel-.*/mipsel/' \
7e973d02 102 -e 's/cris.*/cris/' \
6737908f 103 )
cbc40534 104endif
d79988b6 105export TARGET_ARCH
aa966844
EA
106
107ARFLAGS:=r
108
06d634ea 109# use '-Os' optimization if available, else use -O2, allow Config to override
efe79476 110OPTIMIZATION:=
6737908f 111OPTIMIZATION+=$(call check_gcc,-Os,-O2)
0c6405c1
EA
112
113# Some nice CPU specific optimizations
06d634ea 114ifeq ($(strip $(TARGET_ARCH)),i386)
efe79476 115 OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,)
0c6405c1
EA
116 OPTIMIZATION+=$(call check_gcc,-falign-jumps=0 -falign-loops=0,-malign-jumps=0 -malign-loops=0)
117 CPU_CFLAGS-$(CONFIG_386):="-march=i386"
118 CPU_CFLAGS-$(CONFIG_486):="-march=i486"
119 CPU_CFLAGS-$(CONFIG_586):="-march=i586"
120 CPU_CFLAGS-$(CONFIG_586MMX):="$(call check_gcc,-march=pentium-mmx,-march=i586)"
121 CPU_CFLAGS-$(CONFIG_686):="-march=i686"
122 CPU_CFLAGS-$(CONFIG_PENTIUMIII):="$(call check_gcc,-march=pentium3,-march=i686)"
123 CPU_CFLAGS-$(CONFIG_PENTIUM4):="$(call check_gcc,-march=pentium4,-march=i686)"
124 CPU_CFLAGS-$(CONFIG_K6):="$(call check_gcc,-march=k6,-march=i586)"
125 CPU_CFLAGS-$(CONFIG_K7):="$(call check_gcc,-march=athlon,-malign-functions=4 -march=i686)"
126 CPU_CFLAGS-$(CONFIG_CRUSOE):="-march=i686 -malign-functions=0 -malign-jumps=0 -malign-loops=0"
127 CPU_CFLAGS-$(CONFIG_WINCHIPC6):="$(call check_gcc,-march=winchip-c6,-march=i586)"
128 CPU_CFLAGS-$(CONFIG_WINCHIP2):="$(call check_gcc,-march=winchip2,-march=i586)"
129 CPU_CFLAGS-$(CONFIG_CYRIXIII):="$(call check_gcc,-march=c3,-march=i586)"
06d634ea 130endif
0c6405c1
EA
131
132ifeq ($(strip $(TARGET_ARCH)),arm)
133 OPTIMIZATION+=-fstrict-aliasing
134 CPU_CFLAGS-$(CONFIG_GENERIC_ARM):=
c159d8fb
EA
135 CPU_CFLAGS-$(CONFIG_ARM7TDMI):="-mcpu=arm7tdmi"
136 CPU_CFLAGS-$(CONFIG_STRONGARM):="-mcpu=strongarm"
137 CPU_CFLAGS-$(CONFIG_XSCALE):="$(call check_gcc,-mcpu=xscale,-mcpu=strongarm)"
0c6405c1
EA
138endif
139
140ifeq ($(strip $(TARGET_ARCH)),sh)
141 OPTIMIZATION+=-fstrict-aliasing
f149abb8
EA
142 OPTIMIZATION+= $(call check_gcc,-mprefergot,)
143 CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN):="-EL"
144 CPU_LDFLAGS-$(ARCH_BIG_ENDIAN):="-EB"
0c6405c1
EA
145 CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN):="-ml"
146 CPU_CFLAGS-$(ARCH_BIG_ENDIAN):="-mb"
147 CPU_CFLAGS-$(CONFIG_SH2)+="-m2"
148 CPU_CFLAGS-$(CONFIG_SH3)+="-m3"
149 CPU_CFLAGS-$(CONFIG_SH4)+="-m4"
150 CPU_CFLAGS-$(CONFIG_SH5)+="-m5"
5a2610fb 151endif
163df9f2 152
aa966844 153# Add a bunch of extra pedantic annoyingly strict checks
efe79476 154WARNINGS+=-Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing
e75a596e
EA
155# Some nice CFLAGS to work with
156CFLAGS:=$(WARNINGS) $(OPTIMIZATION) -fno-builtin -nostdinc $(CPUFLAGS) \
157 -D_LIBC $(CPU_CFLAGS-y) $(ARCH_CFLAGS) -I$(TOPDIR)include -I.
aa966844 158
98fd3d6c
EA
159ifeq ($(DODEBUG),y)
160 CFLAGS += -g
161 LDFLAGS:= $(CPU_LDFLAGS-y) -shared --warn-common --warn-once -z combreloc
162 STRIPTOOL:= true -Since_we_are_debugging
163 OPTIMIZATION=$(call check_gcc,-Os,-O2)
164else
165 LDFLAGS := $(CPU_LDFLAGS-y) -s -shared --warn-common --warn-once -z combreloc
166endif
167
4775ec64
EA
168# Sigh, some stupid versions of gcc can't seem to cope with '-iwithprefix include'
169#CFLAGS+=-iwithprefix include
44835a91 170CFLAGS+=$(shell $(CC) -print-search-dirs | sed -ne "s/install: *\(.*\)/-I\1include/gp")
4775ec64 171
af1112c8 172
98fd3d6c 173ifneq ($(DOASSERTS),y)
0dd72555
MB
174 CFLAGS += -DNDEBUG
175endif
c5207a55 176
98fd3d6c 177ifeq ($(HAVE_SHARED),y)
5739992b 178 LIBRARY_CACHE:=#-DUSE_CACHE
98fd3d6c 179 ifeq ($(BUILD_UCLIBC_LDSO),y)
99dd5f42
EA
180 LDSO:=$(TOPDIR)lib/$(UCLIBC_LDSO)
181 DYNAMIC_LINKER:=$(SHARED_LIB_LOADER_PATH)/$(UCLIBC_LDSO)
6737908f 182 BUILD_DYNAMIC_LINKER:=$(shell cd $(TOPDIR) && pwd)/lib/$(UCLIBC_LDSO)
5811a4e8 183 else
99dd5f42 184 LDSO:=$(SYSTEM_LDSO)
99dd5f42
EA
185 DYNAMIC_LINKER:=/lib/$(notdir $(SYSTEM_LDSO))
186 BUILD_DYNAMIC_LINKER:=/lib/$(notdir $(SYSTEM_LDSO))
187 endif
eba708a6 188endif
98fd3d6c 189ifeq ($(DOPIC),y)
5811a4e8 190 CFLAGS += -fPIC
dd43462e 191endif
98fd3d6c 192ifeq ($(UCLIBC_HAS_SOFT_FLOAT),y)
f149abb8 193 CFLAGS += $(call check_gcc,-msoft-float,)
4775ec64 194endif
dfca1817 195
881e6dca 196LIBGCC_CFLAGS ?= $(CFLAGS) $(CPU_CFLAGS-y)
f149abb8
EA
197LIBGCC:=$(shell $(CC) $(LIBGCC_CFLAGS) -print-libgcc-file-name)
198LIBGCC_DIR:=$(dir $(LIBGCC))
199
ae8937b0
EA
200# TARGET_PREFIX is the directory under which which the uClibc runtime
201# environment will be installed and used on the target system. The
202# result will look something like the following:
203# TARGET_PREFIX/
204# lib/ <contains all runtime and static libs>
205# usr/lib/ <this directory is searched for runtime libs>
206# etc/ <weher the shared library cache and configuration
207# information go if you enabled LIBRARY_CACHE above>
208# Very few people will need to change this value from the default...
209TARGET_PREFIX = /
af1112c8 210
This page took 0.077191 seconds and 4 git commands to generate.