[toolchain/eglibc} eglibc in fact can be built with -Os
[openwrt/staging/dedeckeh.git] / toolchain / eglibc / Makefile
1 #
2 # Copyright (C) 2006-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8
9 PKG_NAME:=eglibc
10 PKG_VERSION:=$(call qstrip,$(CONFIG_EGLIBC_VERSION))
11 PKG_REVISION:=$(call qstrip,$(CONFIG_EGLIBC_REVISION))
12
13 PKG_SOURCE_PROTO:=svn
14 PKG_SOURCE_VERSION:=$(PKG_REVISION)
15 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)-r$(PKG_REVISION)
16 PKG_SOURCE:=$(PKG_SOURCE_SUBDIR).tar.bz2
17
18 ifneq ($(CONFIG_EGLIBC_VERSION_2_6),)
19 PKG_SOURCE_URL:=svn://svn.eglibc.org/branches/eglibc-2_6
20 endif
21 ifneq ($(CONFIG_EGLIBC_VERSION_2_7),)
22 PKG_SOURCE_URL:=svn://svn.eglibc.org/branches/eglibc-2_7
23 endif
24 ifneq ($(CONFIG_EGLIBC_VERSION_2_8),)
25 PKG_SOURCE_URL:=svn://svn.eglibc.org/branches/eglibc-2_8
26 endif
27 ifneq ($(CONFIG_EGLIBC_VERSION_2_9),)
28 PKG_SOURCE_URL:=svn://svn.eglibc.org/branches/eglibc-2_9
29 endif
30 ifneq ($(CONFIG_EGLIBC_VERSION_2_10),)
31 PKG_SOURCE_URL:=svn://svn.eglibc.org/branches/eglibc-2_10
32 endif
33 ifneq ($(CONFIG_EGLIBC_VERSION_2_11),)
34 PKG_SOURCE_URL:=svn://svn.eglibc.org/branches/eglibc-2_11
35 endif
36 ifneq ($(CONFIG_EGLIBC_VERSION_2_12),)
37 PKG_SOURCE_URL:=svn://svn.eglibc.org/branches/eglibc-2_12
38 endif
39 ifneq ($(CONFIG_EGLIBC_VERSION_TRUNK),)
40 PKG_SOURCE_URL:=svn://svn.eglibc.org/trunk
41 endif
42
43 PATCH_DIR:=./patches/$(PKG_VERSION)
44
45 HOST_BUILD_DIR:=$(BUILD_DIR_TOOLCHAIN)/$(PKG_SOURCE_SUBDIR)
46
47 include $(INCLUDE_DIR)/toolchain-build.mk
48
49 HOST_STAMP_BUILT:=$(TOOLCHAIN_DIR)/stamp/.eglibc_built
50 HOST_STAMP_INSTALLED:=$(TOOLCHAIN_DIR)/stamp/.eglibc_installed
51
52 HOST_BUILD_DIR1:=$(HOST_BUILD_DIR)-initial
53 HOST_BUILD_DIR2:=$(HOST_BUILD_DIR)-final
54
55 EGLIBC_CONFIGURE:= \
56 BUILD_CC="$(HOSTCC)" \
57 $(TARGET_CONFIGURE_OPTS) \
58 CFLAGS="$(EGLIBC_CFLAGS)" \
59 libc_cv_slibdir="/lib" \
60 $(HOST_BUILD_DIR)/libc/configure \
61 --prefix= \
62 --build=$(GNU_HOST_NAME) \
63 --host=$(REAL_GNU_TARGET_NAME) \
64 --with-headers=$(TOOLCHAIN_DIR)/include \
65 --disable-profile \
66 --without-gd \
67 --without-cvs \
68 --enable-add-ons \
69
70 ifeq ($(CONFIG_SOFT_FLOAT),)
71 EGLIBC_CONFIGURE+= \
72 --with-fp
73 else
74 EGLIBC_CONFIGURE+= \
75 --without-fp
76 endif
77
78 EGLIBC_MAKE:= \
79 $(MAKE) \
80
81 export libc_cv_ssp=no
82
83 define Host/SetToolchainInfo
84 $(SED) 's,^\(LIBC_TYPE\)=.*,\1=$(PKG_NAME),' $(TOOLCHAIN_DIR)/info.mk
85 $(SED) 's,^\(LIBC_URL\)=.*,\1=http://www.eglibc.org/,' $(TOOLCHAIN_DIR)/info.mk
86 $(SED) 's,^\(LIBC_VERSION\)=.*,\1=$(PKG_VERSION),' $(TOOLCHAIN_DIR)/info.mk
87 $(SED) 's,^\(LIBC_SO_VERSION\)=.*,\1=$(PKG_VERSION),' $(TOOLCHAIN_DIR)/info.mk
88 endef
89
90 define Stage1/Configure
91 mkdir -p $(HOST_BUILD_DIR1)
92 $(CP) $(HOST_BUILD_DIR)/libc/option-groups.config $(HOST_BUILD_DIR1)/
93 ( cd $(HOST_BUILD_DIR1); rm -f config.cache; \
94 $(EGLIBC_CONFIGURE) \
95 );
96 endef
97
98 define Stage1/Compile
99 endef
100
101 define Stage1/Install
102 mkdir -p $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/{include,lib}
103 $(EGLIBC_MAKE) -C $(HOST_BUILD_DIR1) \
104 install_root="$(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev" \
105 install-bootstrap-headers=yes \
106 install-headers
107 $(EGLIBC_MAKE) -C $(HOST_BUILD_DIR1) \
108 csu/subdir_lib
109 ( cd $(HOST_BUILD_DIR1); \
110 $(CP) csu/crt1.o csu/crti.o csu/crtn.o $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/lib/ \
111 )
112 $(TARGET_CC) -nostdlib -nostartfiles -shared -x c /dev/null \
113 -o $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/lib/libc.so
114 endef
115
116 define Stage2/Configure
117 mkdir -p $(HOST_BUILD_DIR2)
118 $(CP) $(HOST_BUILD_DIR)/libc/option-groups.config $(HOST_BUILD_DIR2)/
119 ( cd $(HOST_BUILD_DIR2); rm -f config.cache; \
120 $(EGLIBC_CONFIGURE) \
121 );
122 endef
123
124 define Stage2/Compile
125 $(EGLIBC_MAKE) -C $(HOST_BUILD_DIR2) all
126 endef
127
128 define Stage2/Install
129 $(EGLIBC_MAKE) -C $(HOST_BUILD_DIR2) \
130 install_root="$(TOOLCHAIN_DIR)" \
131 install
132 ( cd $(TOOLCHAIN_DIR) ; \
133 for d in lib usr/lib ; do \
134 for f in libc.so libpthread.so libgcc_s.so ; do \
135 if [ -f $$$$d/$$$$f -a ! -L $$$$d/$$$$f ] ; then \
136 $(SED) 's,/usr/lib/,,g;s,/lib/,,g' $$$$d/$$$$f ; \
137 fi \
138 done \
139 done \
140 )
141 endef
142
143 define Host/Prepare
144 $(call Host/SetToolchainInfo)
145 $(call Host/Prepare/Default)
146 ln -snf $(PKG_SOURCE_SUBDIR) $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
147 $(SED) 's,y,n,' $(HOST_BUILD_DIR)/libc/option-groups.defaults
148 grep 'CONFIG_EGLIBC_OPTION_' $(TOPDIR)/.config | sed -e "s,\\(# \)\\?CONFIG_EGLIBC_\\(.*\\),\\1\\2,g" > $(HOST_BUILD_DIR)/libc/option-groups.config
149 ln -sf ../ports $(HOST_BUILD_DIR)/libc/
150 ( cd $(HOST_BUILD_DIR)/libc; autoconf --force )
151 $(call Stage1/Configure)
152 $(call Stage1/Compile)
153 $(call Stage1/Install)
154 endef
155
156 define Host/Configure
157 endef
158
159 define Host/Compile
160 $(call Stage2/Configure)
161 $(call Stage2/Compile)
162 $(call Stage2/Install)
163 endef
164
165 define Host/Install
166 endef
167
168 define Host/Clean
169 rm -rf $(HOST_BUILD_DIR) $(HOST_BUILD_DIR1) $(HOST_BUILD_DIR2) \
170 $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev \
171 $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
172 endef
173
174 $(eval $(call HostBuild))