iproute2: fix ip monitor can't work when NET_NS is not enabled
[lede.git] / package / libs / toolchain / Makefile
1 #
2 # Copyright (C) 2007-2014 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9 PKG_NAME:=toolchain
10 PKG_RELEASE:=1
11
12 PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
13 PKG_LICENSE:=GPL-3.0-with-GCC-exception
14
15 PKG_FLAGS:=hold essential nonshared
16
17 include $(INCLUDE_DIR)/package.mk
18
19 ifneq ($(DUMP),1)
20   LIBGCC_VERSION:=$(GCC_VERSION)
21 else
22   LIBC_VERSION:=<LIBC_VERSION>
23   LIBGCC_VERSION:=<LIBGCC_VERSION>
24 endif
25
26 define Package/gcc/Default
27   SECTION:=libs
28   CATEGORY:=Base system
29   URL:=http://gcc.gnu.org/
30   VERSION:=$(LIBGCC_VERSION)-$(PKG_RELEASE)
31 endef
32
33 define Package/libgcc
34 $(call Package/gcc/Default)
35   TITLE:=GCC support library
36 endef
37
38 define Package/libgcc/config
39         menu "Configuration"
40                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libgcc
41
42         config LIBGCC_ROOT_DIR
43                 string
44                 prompt "libgcc shared library base directory"
45                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libgcc
46                 default TOOLCHAIN_ROOT  if !NATIVE_TOOLCHAIN
47                 default "/"  if NATIVE_TOOLCHAIN
48
49         config LIBGCC_FILE_SPEC
50                 string
51                 prompt "libgcc shared library files (use wildcards)"
52                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libgcc
53                 default "./lib/libgcc_s.so.*"
54
55         endmenu
56 endef
57
58 define Package/libatomic
59 $(call Package/gcc/Default)
60   DEPENDS:=+libgcc
61   TITLE:=Atomic support library
62 endef
63
64 define Package/libatomic/config
65         menu "Configuration"
66                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libatomic
67
68         config LIBATOMIC_ROOT_DIR
69                 string
70                 prompt "libatomic shared library base directory"
71                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libatomic
72                 default TOOLCHAIN_ROOT  if !NATIVE_TOOLCHAIN
73                 default "/"  if NATIVE_TOOLCHAIN
74
75         config LIBATOMIC_FILE_SPEC
76                 string
77                 prompt "libatomic shared library files (use wildcards)"
78                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libatomic
79                 default "./lib/libatomic.so.*"
80
81         endmenu
82 endef
83
84 define Package/libssp
85 $(call Package/gcc/Default)
86   DEPENDS+=@SSP_SUPPORT
87   TITLE:=GCC support library
88 endef
89
90 define Package/libssp/config
91         menu "Configuration"
92                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libssp
93
94         config LIBSSP_ROOT_DIR
95                 string
96                 prompt "libssp shared library base directory"
97                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libssp
98                 default TOOLCHAIN_ROOT  if !NATIVE_TOOLCHAIN
99                 default "/"  if NATIVE_TOOLCHAIN
100
101         config LIBSSP_FILE_SPEC
102                 string
103                 prompt "libssp shared library files (use wildcards)"
104                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libssp
105                 default "./lib/libssp.so.*"
106
107         endmenu
108 endef
109
110
111 define Package/libstdcpp
112 $(call Package/gcc/Default)
113   NAME:=libstdc++
114   TITLE:=GNU Standard C++ Library v3
115 endef
116
117 define Package/libstdcpp/config
118         menu "Configuration"
119         depends on EXTERNAL_TOOLCHAIN && PACKAGE_libstdcpp
120
121         config LIBSTDCPP_ROOT_DIR
122                 string
123                 prompt "libstdcpp shared library base directory"
124                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libstdcpp
125                 default TOOLCHAIN_ROOT  if !NATIVE_TOOLCHAIN
126                 default "/"  if NATIVE_TOOLCHAIN
127
128         config LIBSTDCPP_FILE_SPEC
129                 string
130                 prompt "libstdc++ shared library files (use wildcards)"
131                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libstdcpp
132                 default "./lib/libstdc++.so.*"
133
134         endmenu
135 endef
136
137
138 define Package/libc/Default
139   SECTION:=libs
140   CATEGORY:=Base system
141   VERSION:=$(LIBC_VERSION)-$(PKG_RELEASE)
142   DEPENDS:=+libgcc
143   URL:=$(LIBC_URL)
144 endef
145
146
147 define Package/libc
148 $(call Package/libc/Default)
149   TITLE:=C library
150 endef
151
152 define Package/libc/config
153         menu "Configuration"
154         depends on EXTERNAL_TOOLCHAIN && PACKAGE_libc
155
156         config LIBC_ROOT_DIR
157                 string
158                 prompt "libc shared library base directory"
159                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libc
160                 default TOOLCHAIN_ROOT  if !NATIVE_TOOLCHAIN
161                 default "/"  if NATIVE_TOOLCHAIN
162
163         config LIBC_FILE_SPEC
164                 string
165                 prompt "libc shared library files (use wildcards)"
166                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libc
167                 default "./lib/ld{-*.so,-linux*.so.*} ./lib/lib{anl,c,cidn,crypt,dl,m,nsl,nss_dns,nss_files,resolv,util}{-*.so,.so.*}"
168
169         endmenu
170 endef
171
172
173 define Package/libpthread
174 $(call Package/libc/Default)
175   TITLE:=POSIX thread library
176 endef
177
178 define Package/libpthread/config
179         menu "Configuration"
180         depends on EXTERNAL_TOOLCHAIN && PACKAGE_libpthread
181
182         config LIBPTHREAD_ROOT_DIR
183                 string
184                 prompt "libpthread shared library base directory"
185                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libpthread
186                 default TOOLCHAIN_ROOT  if !NATIVE_TOOLCHAIN
187                 default "/"  if NATIVE_TOOLCHAIN
188
189         config LIBPTHREAD_FILE_SPEC
190                 string
191                 prompt "libpthread shared library files (use wildcards)"
192                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libpthread
193                 default "./lib/libpthread{-*.so,.so.*}"
194
195         endmenu
196 endef
197
198
199 define Package/libthread-db
200 $(call Package/libc/Default)
201   DEPENDS:=@!USE_MUSL
202   TITLE:=POSIX thread library debugging support
203 endef
204
205 define Package/librt
206 $(call Package/libc/Default)
207   TITLE:=POSIX.1b RealTime extension library
208   DEPENDS:=+libpthread
209 endef
210
211 define Package/librt/config
212         menu "Configuration"
213         depends on EXTERNAL_TOOLCHAIN && PACKAGE_librt
214
215         config LIBRT_ROOT_DIR
216                 string
217                 prompt "librt shared library base directory"
218                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_librt
219                 default TOOLCHAIN_ROOT  if !NATIVE_TOOLCHAIN
220                 default "/"  if NATIVE_TOOLCHAIN
221
222         config LIBRT_FILE_SPEC
223                 string
224                 prompt "librt shared library files (use wildcards)"
225                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_librt
226                 default "./lib/librt{-*.so,.so.*}"
227
228         endmenu
229 endef
230
231
232 define Package/libgfortran
233 $(call Package/gcc/Default)
234   TITLE:=GFortran support library
235   DEPENDS+=@INSTALL_GFORTRAN
236 endef
237
238 define Package/libgfortran/config
239         menu "Configuration"
240                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libgfortran
241
242         config LIBGFORTRAN_ROOT_DIR
243                 string
244                 prompt "libgfortran shared library base directory"
245                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libgfortran
246                 default TOOLCHAIN_ROOT  if !NATIVE_TOOLCHAIN
247                 default "/"  if NATIVE_TOOLCHAIN
248
249         config LIBGFORTRAN_FILE_SPEC
250                 string
251                 prompt "libgfortran shared library files (use wildcards)"
252                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libgfortran
253                 default "./usr/lib/libgfortran.so.*"
254
255         endmenu
256 endef
257
258 define Package/ldd
259 $(call Package/libc/Default)
260   DEPENDS:=@!USE_MUSL
261   SECTION:=utils
262   CATEGORY:=Utilities
263   TITLE:=LDD trace utility
264 endef
265
266 define Package/ldd/config
267         menu "Configuration"
268                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_ldd
269
270         config LDD_ROOT_DIR
271                 string
272                 prompt "ldd trace utility base directory"
273                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_ldd
274                 default TOOLCHAIN_ROOT  if !NATIVE_TOOLCHAIN
275                 default "/"  if NATIVE_TOOLCHAIN
276
277         config LDD_FILE_SPEC
278                 string
279                 prompt "ldd trace utility file"
280                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_ldd
281                 default "./usr/bin/ldd"
282
283         endmenu
284 endef
285
286
287 define Package/ldconfig
288 $(call Package/libc/Default)
289   DEPENDS:=@!USE_MUSL
290   SECTION:=utils
291   CATEGORY:=Utilities
292   TITLE:=Shared library path configuration
293 endef
294
295 define Package/ldconfig/config
296         menu "Configuration"
297                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_ldconfig
298
299         config LDCONFIG_ROOT_DIR
300                 string
301                 prompt "ldconfig base directory"
302                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_ldconfig
303                 default TOOLCHAIN_ROOT  if !NATIVE_TOOLCHAIN
304                 default "/"  if NATIVE_TOOLCHAIN
305
306         config LDCONFIG_FILE_SPEC
307                 string
308                 prompt "ldconfig file"
309                 depends on EXTERNAL_TOOLCHAIN && PACKAGE_ldconfig
310                 default "./sbin/ldconfig"
311
312         endmenu
313 endef
314
315 define Build/Prepare
316         mkdir -p $(PKG_BUILD_DIR)
317 endef
318
319 LIBGCC_A=$(lastword $(wildcard $(TOOLCHAIN_DIR)/lib/gcc/*/*/libgcc_pic.a))
320 LIBGCC_MAP=$(lastword $(wildcard $(TOOLCHAIN_DIR)/lib/gcc/*/*/libgcc.map))
321 LIBGCC_SO=$(lastword $(wildcard $(TOOLCHAIN_DIR)/lib/libgcc_s.so.*))
322
323 define Build/Compile/uClibc
324         $(CP) \
325                 $(TOOLCHAIN_DIR)/lib/libuClibc-*.so \
326                 $(TOOLCHAIN_DIR)/lib/libcrypt-*.so \
327                 $(TOOLCHAIN_DIR)/lib/libm-*.so \
328                 $(TOOLCHAIN_DIR)/lib/libpthread-*.so \
329                 $(PKG_BUILD_DIR)/
330 endef
331 ifneq ($(LIBGCC_SO),)
332     define Build/Compile/libgcc
333         $(CP) $(LIBGCC_SO) $(PKG_BUILD_DIR)/
334     endef
335 endif
336
337 define Build/Compile/Default
338         $(call Build/Compile/libgcc)
339         $(call Build/Compile/$(LIBC))
340 endef
341 Build/Compile = $(Build/Compile/Default)
342
343 ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
344
345   define Package/libgcc/install
346         $(INSTALL_DIR) $(1)/lib
347         $(CP) $(TOOLCHAIN_DIR)/lib/libgcc_s.so.* $(1)/lib/
348   endef
349
350   define Package/libatomic/install
351         $(INSTALL_DIR) $(1)/lib
352         $(CP) $(TOOLCHAIN_DIR)/lib/libatomic.so.* $(1)/lib/
353   endef
354
355   define Package/libgfortran/install
356         $(INSTALL_DIR) $(1)/usr/lib
357         $(CP) $(TOOLCHAIN_DIR)/lib/libgfortran.so.* $(1)/usr/lib/
358   endef
359
360   define Package/libssp/install
361         $(INSTALL_DIR) $(1)/lib
362         $(CP) $(TOOLCHAIN_DIR)/lib/libssp.so.* $(1)/lib/
363   endef
364
365   define Package/libstdcpp/install
366         $(INSTALL_DIR) $(1)/usr/lib
367         $(CP) $(TOOLCHAIN_DIR)/lib/libstdc++.so.* $(1)/usr/lib/
368   endef
369
370   define Package/glibc/install
371         $(CP) ./glibc-files/* $(1)/
372         rm -f $(1)/etc/localtime
373         $(LN) /tmp/localtime $(1)/etc/localtime
374         $(INSTALL_DIR) $(1)/lib
375         $(CP) \
376                 $(TOOLCHAIN_DIR)/lib/ld*.so.* \
377                 $(TOOLCHAIN_DIR)/lib/ld-$(LIBC_SO_VERSION).so \
378                 $(1)/lib/
379         for file in libanl libc libcidn libcrypt libdl libm libnsl libnss_dns libnss_files libresolv libutil; do \
380                 for file in $(TOOLCHAIN_DIR)/lib/$$$$file.so.* $(TOOLCHAIN_DIR)/lib/$$$$file-$(LIBC_SO_VERSION).so; do \
381                         if [ -e "$$$$file" ]; then \
382                                 $(CP) $$$$file $(1)/lib/; \
383                         fi; \
384                 done; \
385         done
386   endef
387
388   define Package/uClibc/install
389         $(INSTALL_DIR) $(1)/lib
390         $(CP) \
391                 $(TOOLCHAIN_DIR)/lib/ld*-uClibc.so.* \
392                 $(TOOLCHAIN_DIR)/lib/ld*-uClibc-$(LIBC_SO_VERSION).so \
393                 $(1)/lib/
394         $(CP) \
395                 $(TOOLCHAIN_DIR)/lib/libc.so.* \
396                 $(TOOLCHAIN_DIR)/lib/libuClibc-$(LIBC_SO_VERSION).so \
397                 $(1)/lib/
398         for file in libcrypt libdl libm libutil; do \
399                 $(CP) \
400                         $(TOOLCHAIN_DIR)/lib/$$$$file.so.* \
401                         $(TOOLCHAIN_DIR)/lib/$$$$file-$(LIBC_SO_VERSION).so \
402                         $(1)/lib/; \
403         done
404
405         $(CP) \
406                 $(PKG_BUILD_DIR)/libuClibc-* \
407                 $(PKG_BUILD_DIR)/libm-* \
408                 $(PKG_BUILD_DIR)/libcrypt-* \
409                 $(1)/lib/
410   endef
411
412   LD_MUSL_NAME = $(notdir $(firstword $(wildcard $(TOOLCHAIN_DIR)/lib/libc.so*)))
413
414   define Package/musl/install
415         $(INSTALL_DIR) $(1)/lib $(1)/usr/bin
416         $(CP) \
417                 $(TOOLCHAIN_DIR)/lib/ld-musl-*.so* \
418                 $(1)/lib/
419         $(CP) \
420                 $(TOOLCHAIN_DIR)/lib/libc.so* \
421                 $(1)/lib/
422         $(LN) ../../lib/$(LD_MUSL_NAME) $(1)/usr/bin/ldd
423   endef
424
425   define Package/libc/install
426     $(call Package/$(LIBC)/install,$1)
427   endef
428
429   define Package/libc/install_lib
430         $(CP) $(filter-out %/libdl_pic.a %/libpthread_pic.a %/libresolv_pic.a,$(wildcard $(TOOLCHAIN_DIR)/lib/lib*.a)) $(1)/lib/
431         $(if $(wildcard $(TOOLCHAIN_DIR)/lib/libc_so.a),$(CP) $(TOOLCHAIN_DIR)/lib/libc_so.a $(1)/lib/libc_pic.a)
432         $(if $(LIBGCC_MAP), \
433                 $(CP) $(LIBGCC_A) $(1)/lib/libgcc_s_pic.a; \
434                 $(CP) $(LIBGCC_MAP) $(1)/lib/libgcc_s_pic.map \
435         )
436   endef
437
438   define Package/libpthread/install
439         $(INSTALL_DIR) $(1)/lib
440   ifneq ($(CONFIG_USE_MUSL),y)
441         $(CP) \
442                 $(TOOLCHAIN_DIR)/lib/libpthread.so.* \
443                 $(TOOLCHAIN_DIR)/lib/libpthread-$(LIBC_SO_VERSION).so \
444                 $(1)/lib/
445   endif
446   endef
447
448   define Package/libthread-db/install
449         $(INSTALL_DIR) $(1)/lib
450         $(CP) \
451                 $(TOOLCHAIN_DIR)/lib/libthread_db.so.* $(1)/lib
452   ifeq ($(CONFIG_USE_UCLIBC),y)
453         $(CP) \
454                 $(TOOLCHAIN_DIR)/lib/libthread_db-$(LIBC_SO_VERSION).so \
455                 $(1)/lib/
456   endif
457   endef
458
459   define Package/libpthread/install_lib
460         $(if $(wildcard $(TOOLCHAIN_DIR)/lib/libpthread_so.a),$(CP) $(TOOLCHAIN_DIR)/lib/libpthread_so.a $(1)/lib/libpthread_pic.a)
461   endef
462
463   define Package/librt/install
464         $(INSTALL_DIR) $(1)/lib
465   ifneq ($(CONFIG_USE_MUSL),y)
466         $(CP) \
467                 $(TOOLCHAIN_DIR)/lib/librt.so.* \
468                 $(TOOLCHAIN_DIR)/lib/librt-$(LIBC_SO_VERSION).so \
469                 $(1)/lib/
470   endif
471   endef
472
473   define Package/ldd/install
474         $(INSTALL_DIR) $(1)/usr/bin/
475         $(CP) $(TOOLCHAIN_DIR)/bin/ldd $(1)/usr/bin/
476   endef
477
478   define Package/ldconfig/install
479         $(INSTALL_DIR) $(1)/sbin/
480         $(CP) $(TOOLCHAIN_DIR)/sbin/ldconfig $(1)/sbin/
481   endef
482
483 else
484
485   define Package/libgcc/install
486         for file in $(call qstrip,$(CONFIG_LIBGCC_FILE_SPEC)); do \
487                 $(INSTALL_DIR) $(1)/lib ; \
488                 $(CP) $(call qstrip,$(CONFIG_LIBGCC_ROOT_DIR))/$$$$file $(1)/lib/ ; \
489         done ; \
490         exit 0
491   endef
492
493   define Package/libgfortran/install
494         for file in $(call qstrip,$(CONFIG_LIBGFORTRAN_FILE_SPEC)); do \
495                 $(INSTALL_DIR) $(1)/lib ; \
496                 $(CP) $(call qstrip,$(CONFIG_LIBGFORTRAN_ROOT_DIR))/$$$$file $(1)/lib/ ; \
497         done
498   endef
499
500   define Package/libssp/install
501         for file in $(call qstrip,$(CONFIG_LIBSSP_FILE_SPEC)); do \
502                 $(INSTALL_DIR) $(1)/lib ; \
503                 $(CP) $(call qstrip,$(CONFIG_LIBSSP_ROOT_DIR))/$$$$file $(1)/lib/ ; \
504         done ; \
505         exit 0
506   endef
507
508   define Package/libstdcpp/install
509         for file in $(call qstrip,$(CONFIG_LIBSTDCPP_FILE_SPEC)); do \
510                 $(INSTALL_DIR) $(1)/lib ; \
511                 $(CP) $(call qstrip,$(CONFIG_LIBSTDCPP_ROOT_DIR))/$$$$file $(1)/lib/ ; \
512         done ; \
513         exit 0
514   endef
515
516   define Package/libc/install
517         for file in $(call qstrip,$(CONFIG_LIBC_FILE_SPEC)); do \
518                 $(INSTALL_DIR) $(1)/lib ; \
519                 $(CP) $(call qstrip,$(CONFIG_LIBC_ROOT_DIR))/$$$$file $(1)/lib/ ; \
520         done ; \
521         exit 0
522   endef
523
524   define Package/libpthread/install
525         for file in $(call qstrip,$(CONFIG_LIBPTHREAD_FILE_SPEC)); do \
526                 $(INSTALL_DIR) $(1)/lib ; \
527                 $(CP) $(call qstrip,$(CONFIG_LIBPTHREAD_ROOT_DIR))/$$$$file $(1)/lib/ ; \
528         done ; \
529         exit 0
530   endef
531
532   define Package/librt/install
533         for file in $(call qstrip,$(CONFIG_LIBRT_FILE_SPEC)); do \
534                 $(INSTALL_DIR) $(1)/lib ; \
535                 $(CP) $(call qstrip,$(CONFIG_LIBRT_ROOT_DIR))/$$$$file $(1)/lib/ ; \
536         done ; \
537         exit 0
538   endef
539
540   define Package/libatomic/install
541         for file in $(call qstrip,$(CONFIG_LIBATOMIC_FILE_SPEC)); do \
542                 $(INSTALL_DIR) $(1)/lib ; \
543                 $(CP) $(call qstrip,$(CONFIG_LIBATOMIC_ROOT_DIR))/$$$$file $(1)/lib/ ; \
544         done ; \
545         exit 0
546   endef
547
548   define Package/ldd/install
549         for file in $(call qstrip,$(CONFIG_LDD_FILE_SPEC)); do \
550                 dir=`dirname $$$$file` ; \
551                 $(INSTALL_DIR) $(1)/$$$$dir ; \
552                 $(CP) $(call qstrip,$(CONFIG_LDD_ROOT_DIR))/$$$$file $(1)/$$$$dir/ ; \
553         done ; \
554         exit 0
555   endef
556
557   define Package/ldconfig/install
558         for file in $(call qstrip,$(CONFIG_LDCONFIG_FILE_SPEC)); do \
559                 dir=`dirname $$$$file` ; \
560                 $(INSTALL_DIR) $(1)/$$$$dir ; \
561                 $(CP) $(call qstrip,$(CONFIG_LDCONFIG_ROOT_DIR))/$$$$file $(1)/$$$$dir/ ; \
562         done ; \
563         exit 0
564   endef
565
566 endif
567
568 $(eval $(call BuildPackage,libc))
569 $(eval $(call BuildPackage,libgcc))
570 $(eval $(call BuildPackage,libatomic))
571 $(eval $(call BuildPackage,libssp))
572 $(eval $(call BuildPackage,libstdcpp))
573 $(eval $(call BuildPackage,libpthread))
574 $(eval $(call BuildPackage,libthread-db))
575 $(eval $(call BuildPackage,librt))
576 $(eval $(call BuildPackage,libgfortran))
577 $(eval $(call BuildPackage,ldd))
578 $(eval $(call BuildPackage,ldconfig))