]>
Commit | Line | Data |
---|---|---|
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 | 37 | CROSS= |
881e6dca EA |
38 | CC= $(CROSS)gcc |
39 | AR= $(CROSS)ar | |
40 | LD= $(CROSS)ld | |
41 | NM= $(CROSS)nm | |
42 | STRIPTOOL= $(CROSS)strip | |
6737908f EA |
43 | |
44 | # Select the compiler needed to build binaries for your development system | |
8fc69335 EA |
45 | HOSTCC=gcc |
46 | HOSTCFLAGS=-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 | 53 | MAJOR_VERSION:=0 |
58bd16ab | 54 | MINOR_VERSION:=9 |
9dfd7d43 | 55 | SUBLEVEL:=16 |
58bd16ab | 56 | VERSION:=$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL) |
d79988b6 EA |
57 | # Ensure consistent filename sort order |
58 | LC_COLLATE:= C | |
59 | export MAJOR_VERSION MINOR_VERSION SUBLEVEL VERSION LC_COLLATE | |
58bd16ab | 60 | |
58bd16ab | 61 | SHARED_FULLNAME:=libuClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so |
5739992b EA |
62 | SHARED_MAJORNAME:=libc.so.$(MAJOR_VERSION) |
63 | UCLIBC_LDSO:=ld-uClibc.so.$(MAJOR_VERSION) | |
6737908f EA |
64 | LIBNAME:=libc.a |
65 | LIBC:=$(TOPDIR)libc/$(LIBNAME) | |
c75d8083 | 66 | |
6737908f EA |
67 | # Pull in the user's uClibc configuration |
68 | ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),) | |
772cb310 | 69 | include_config := 1 |
6737908f EA |
70 | -include $(TOPDIR).config |
71 | endif | |
72 | ||
efe79476 EA |
73 | # A nifty macro to make testing gcc features easier |
74 | check_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 |
78 | AWK:=$(shell if [ -x /usr/bin/nawk ]; then echo "/usr/bin/nawk"; \ |
79 | else echo "/usr/bin/awk"; fi) | |
8eecdc92 | 80 | |
8fc69335 | 81 | HOST_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 | 91 | ifeq ($(strip $(TARGET_ARCH)),) |
6737908f | 92 | TARGET_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 | 104 | endif |
d79988b6 | 105 | export TARGET_ARCH |
aa966844 EA |
106 | |
107 | ARFLAGS:=r | |
108 | ||
06d634ea | 109 | # use '-Os' optimization if available, else use -O2, allow Config to override |
efe79476 | 110 | OPTIMIZATION:= |
6737908f | 111 | OPTIMIZATION+=$(call check_gcc,-Os,-O2) |
0c6405c1 EA |
112 | |
113 | # Some nice CPU specific optimizations | |
06d634ea | 114 | ifeq ($(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 | 130 | endif |
0c6405c1 EA |
131 | |
132 | ifeq ($(strip $(TARGET_ARCH)),arm) | |
133 | OPTIMIZATION+=-fstrict-aliasing | |
134 | CPU_CFLAGS-$(CONFIG_GENERIC_ARM):= | |
e766a181 EA |
135 | CPU_CFLAGS-$(CONFIG_ARM7TDMI):="-mtune=arm7tdmi" |
136 | CPU_CFLAGS-$(CONFIG_STRONGARM):="-mtune=strongarm" | |
137 | CPU_CFLAGS-$(CONFIG_XSCALE):="-mtune=xscale" | |
0c6405c1 EA |
138 | endif |
139 | ||
140 | ifeq ($(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 | 151 | endif |
163df9f2 | 152 | |
de2abcca EA |
153 | ifeq ($(strip $(TARGET_ARCH)),h8300) |
154 | CPU_LDFLAGS-y:=-mh8300h | |
155 | CPU_CFLAGS-y+=-mh -mint32 -fsigned-char | |
156 | endif | |
157 | ||
bddae88b EA |
158 | # Override optimization settings when debugging |
159 | ifeq ($(DODEBUG),y) | |
160 | OPTIMIZATION=$(call check_gcc,-Os,-O2) | |
161 | endif | |
162 | ||
163 | ||
aa966844 | 164 | # Add a bunch of extra pedantic annoyingly strict checks |
efe79476 | 165 | WARNINGS+=-Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing |
e75a596e EA |
166 | # Some nice CFLAGS to work with |
167 | CFLAGS:=$(WARNINGS) $(OPTIMIZATION) -fno-builtin -nostdinc $(CPUFLAGS) \ | |
168 | -D_LIBC $(CPU_CFLAGS-y) $(ARCH_CFLAGS) -I$(TOPDIR)include -I. | |
aa966844 | 169 | |
98fd3d6c EA |
170 | ifeq ($(DODEBUG),y) |
171 | CFLAGS += -g | |
172 | LDFLAGS:= $(CPU_LDFLAGS-y) -shared --warn-common --warn-once -z combreloc | |
173 | STRIPTOOL:= true -Since_we_are_debugging | |
98fd3d6c EA |
174 | else |
175 | LDFLAGS := $(CPU_LDFLAGS-y) -s -shared --warn-common --warn-once -z combreloc | |
176 | endif | |
177 | ||
4775ec64 EA |
178 | # Sigh, some stupid versions of gcc can't seem to cope with '-iwithprefix include' |
179 | #CFLAGS+=-iwithprefix include | |
44835a91 | 180 | CFLAGS+=$(shell $(CC) -print-search-dirs | sed -ne "s/install: *\(.*\)/-I\1include/gp") |
4775ec64 | 181 | |
af1112c8 | 182 | |
98fd3d6c | 183 | ifneq ($(DOASSERTS),y) |
0dd72555 MB |
184 | CFLAGS += -DNDEBUG |
185 | endif | |
c5207a55 | 186 | |
98fd3d6c | 187 | ifeq ($(HAVE_SHARED),y) |
5739992b | 188 | LIBRARY_CACHE:=#-DUSE_CACHE |
98fd3d6c | 189 | ifeq ($(BUILD_UCLIBC_LDSO),y) |
99dd5f42 EA |
190 | LDSO:=$(TOPDIR)lib/$(UCLIBC_LDSO) |
191 | DYNAMIC_LINKER:=$(SHARED_LIB_LOADER_PATH)/$(UCLIBC_LDSO) | |
6737908f | 192 | BUILD_DYNAMIC_LINKER:=$(shell cd $(TOPDIR) && pwd)/lib/$(UCLIBC_LDSO) |
5811a4e8 | 193 | else |
99dd5f42 | 194 | LDSO:=$(SYSTEM_LDSO) |
99dd5f42 EA |
195 | DYNAMIC_LINKER:=/lib/$(notdir $(SYSTEM_LDSO)) |
196 | BUILD_DYNAMIC_LINKER:=/lib/$(notdir $(SYSTEM_LDSO)) | |
197 | endif | |
eba708a6 | 198 | endif |
98fd3d6c | 199 | ifeq ($(DOPIC),y) |
5811a4e8 | 200 | CFLAGS += -fPIC |
dd43462e | 201 | endif |
98fd3d6c | 202 | ifeq ($(UCLIBC_HAS_SOFT_FLOAT),y) |
f149abb8 | 203 | CFLAGS += $(call check_gcc,-msoft-float,) |
4775ec64 | 204 | endif |
dfca1817 | 205 | |
881e6dca | 206 | LIBGCC_CFLAGS ?= $(CFLAGS) $(CPU_CFLAGS-y) |
f149abb8 EA |
207 | LIBGCC:=$(shell $(CC) $(LIBGCC_CFLAGS) -print-libgcc-file-name) |
208 | LIBGCC_DIR:=$(dir $(LIBGCC)) | |
209 | ||
ae8937b0 EA |
210 | # TARGET_PREFIX is the directory under which which the uClibc runtime |
211 | # environment will be installed and used on the target system. The | |
212 | # result will look something like the following: | |
213 | # TARGET_PREFIX/ | |
214 | # lib/ <contains all runtime and static libs> | |
215 | # usr/lib/ <this directory is searched for runtime libs> | |
216 | # etc/ <weher the shared library cache and configuration | |
217 | # information go if you enabled LIBRARY_CACHE above> | |
218 | # Very few people will need to change this value from the default... | |
219 | TARGET_PREFIX = / | |
af1112c8 | 220 |