8a90b5eda665803218bc0e1c1db9020bdf2855ce
[openwrt/openwrt.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/libthread-db/config
206 menu "Configuration"
207 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libthread-db
208
209 config LIBTHREAD_DB_ROOT_DIR
210 string
211 prompt "POSIX thread debugging shared library base directory"
212 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libthread-db
213 default TOOLCHAIN_ROOT if !NATIVE_TOOLCHAIN
214 default "/" if NATIVE_TOOLCHAIN
215
216 config LIBTHREAD_DB_FILE_SPEC
217 string
218 prompt "POSIX thread debugging shared library files (use wildcards)"
219 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libthread-db
220 default "./lib/libthread_db{-*.so,.so.*}"
221
222 endmenu
223 endef
224
225 define Package/librt
226 $(call Package/libc/Default)
227 TITLE:=POSIX.1b RealTime extension library
228 DEPENDS:=+libpthread
229 endef
230
231 define Package/librt/config
232 menu "Configuration"
233 depends on EXTERNAL_TOOLCHAIN && PACKAGE_librt
234
235 config LIBRT_ROOT_DIR
236 string
237 prompt "librt shared library base directory"
238 depends on EXTERNAL_TOOLCHAIN && PACKAGE_librt
239 default TOOLCHAIN_ROOT if !NATIVE_TOOLCHAIN
240 default "/" if NATIVE_TOOLCHAIN
241
242 config LIBRT_FILE_SPEC
243 string
244 prompt "librt shared library files (use wildcards)"
245 depends on EXTERNAL_TOOLCHAIN && PACKAGE_librt
246 default "./lib/librt{-*.so,.so.*}"
247
248 endmenu
249 endef
250
251
252 define Package/libgfortran
253 $(call Package/gcc/Default)
254 TITLE:=GFortran support library
255 DEPENDS+=@INSTALL_GFORTRAN
256 endef
257
258 define Package/libgfortran/config
259 menu "Configuration"
260 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libgfortran
261
262 config LIBGFORTRAN_ROOT_DIR
263 string
264 prompt "libgfortran shared library base directory"
265 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libgfortran
266 default TOOLCHAIN_ROOT if !NATIVE_TOOLCHAIN
267 default "/" if NATIVE_TOOLCHAIN
268
269 config LIBGFORTRAN_FILE_SPEC
270 string
271 prompt "libgfortran shared library files (use wildcards)"
272 depends on EXTERNAL_TOOLCHAIN && PACKAGE_libgfortran
273 default "./usr/lib/libgfortran.so.*"
274
275 endmenu
276 endef
277
278 define Package/ldd
279 $(call Package/libc/Default)
280 DEPENDS:=@!USE_MUSL
281 SECTION:=utils
282 CATEGORY:=Utilities
283 TITLE:=LDD trace utility
284 endef
285
286 define Package/ldd/config
287 menu "Configuration"
288 depends on EXTERNAL_TOOLCHAIN && PACKAGE_ldd
289
290 config LDD_ROOT_DIR
291 string
292 prompt "ldd trace utility base directory"
293 depends on EXTERNAL_TOOLCHAIN && PACKAGE_ldd
294 default TOOLCHAIN_ROOT if !NATIVE_TOOLCHAIN
295 default "/" if NATIVE_TOOLCHAIN
296
297 config LDD_FILE_SPEC
298 string
299 prompt "ldd trace utility file"
300 depends on EXTERNAL_TOOLCHAIN && PACKAGE_ldd
301 default "./usr/bin/ldd"
302
303 endmenu
304 endef
305
306
307 define Package/ldconfig
308 $(call Package/libc/Default)
309 DEPENDS:=@!USE_MUSL
310 SECTION:=utils
311 CATEGORY:=Utilities
312 TITLE:=Shared library path configuration
313 endef
314
315 define Package/ldconfig/config
316 menu "Configuration"
317 depends on EXTERNAL_TOOLCHAIN && PACKAGE_ldconfig
318
319 config LDCONFIG_ROOT_DIR
320 string
321 prompt "ldconfig base directory"
322 depends on EXTERNAL_TOOLCHAIN && PACKAGE_ldconfig
323 default TOOLCHAIN_ROOT if !NATIVE_TOOLCHAIN
324 default "/" if NATIVE_TOOLCHAIN
325
326 config LDCONFIG_FILE_SPEC
327 string
328 prompt "ldconfig file"
329 depends on EXTERNAL_TOOLCHAIN && PACKAGE_ldconfig
330 default "./sbin/ldconfig"
331
332 endmenu
333 endef
334
335 define Build/Prepare
336 mkdir -p $(PKG_BUILD_DIR)
337 endef
338
339 LIBGCC_A=$(lastword $(wildcard $(TOOLCHAIN_DIR)/lib/gcc/*/*/libgcc_pic.a))
340 LIBGCC_MAP=$(lastword $(wildcard $(TOOLCHAIN_DIR)/lib/gcc/*/*/libgcc.map))
341 LIBGCC_SO=$(lastword $(wildcard $(TOOLCHAIN_DIR)/lib/libgcc_s.so.*))
342
343 define Build/Compile/uClibc
344 $(CP) \
345 $(TOOLCHAIN_DIR)/lib/libuClibc-*.so \
346 $(PKG_BUILD_DIR)/
347 endef
348 ifneq ($(LIBGCC_SO),)
349 define Build/Compile/libgcc
350 $(CP) $(LIBGCC_SO) $(PKG_BUILD_DIR)/
351 endef
352 endif
353
354 define Build/Compile/Default
355 $(call Build/Compile/libgcc)
356 $(call Build/Compile/$(LIBC))
357 endef
358 Build/Compile = $(Build/Compile/Default)
359
360 ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
361
362 define Package/libgcc/install
363 $(INSTALL_DIR) $(1)/lib
364 $(CP) $(TOOLCHAIN_DIR)/lib/libgcc_s.so.* $(1)/lib/
365 endef
366
367 define Package/libatomic/install
368 $(INSTALL_DIR) $(1)/lib
369 $(CP) $(TOOLCHAIN_DIR)/lib/libatomic.so.* $(1)/lib/
370 endef
371
372 define Package/libgfortran/install
373 $(INSTALL_DIR) $(1)/usr/lib
374 $(CP) $(TOOLCHAIN_DIR)/lib/libgfortran.so.* $(1)/usr/lib/
375 endef
376
377 define Package/libssp/install
378 $(INSTALL_DIR) $(1)/lib
379 $(CP) $(TOOLCHAIN_DIR)/lib/libssp.so.* $(1)/lib/
380 endef
381
382 define Package/libstdcpp/install
383 $(INSTALL_DIR) $(1)/usr/lib
384 $(CP) $(TOOLCHAIN_DIR)/lib/libstdc++.so.* $(1)/usr/lib/
385 endef
386
387 define Package/glibc/install
388 $(CP) ./glibc-files/* $(1)/
389 rm -f $(1)/etc/localtime
390 $(LN) /tmp/localtime $(1)/etc/localtime
391 $(INSTALL_DIR) $(1)/lib
392 $(CP) \
393 $(TOOLCHAIN_DIR)/lib/ld*.so.* \
394 $(TOOLCHAIN_DIR)/lib/ld-$(LIBC_SO_VERSION).so \
395 $(1)/lib/
396 for file in libanl libc libcidn libcrypt libdl libm libnsl libnss_dns libnss_files libresolv libutil; do \
397 for file in $(TOOLCHAIN_DIR)/lib/$$$$file.so.* $(TOOLCHAIN_DIR)/lib/$$$$file-$(LIBC_SO_VERSION).so; do \
398 if [ -e "$$$$file" ]; then \
399 $(CP) $$$$file $(1)/lib/; \
400 fi; \
401 done; \
402 done
403 endef
404
405 define Package/uClibc/install
406 $(INSTALL_DIR) $(1)/lib
407 $(CP) \
408 $(TOOLCHAIN_DIR)/lib/ld*-uClibc.so.* \
409 $(TOOLCHAIN_DIR)/lib/ld*-uClibc-$(LIBC_SO_VERSION).so \
410 $(1)/lib/
411 $(CP) \
412 $(TOOLCHAIN_DIR)/lib/libc.so.* \
413 $(TOOLCHAIN_DIR)/lib/libuClibc-$(LIBC_SO_VERSION).so \
414 $(1)/lib/
415 $(CP) \
416 $(PKG_BUILD_DIR)/libuClibc-* \
417 $(1)/lib/
418 endef
419
420 LD_MUSL_NAME = $(notdir $(firstword $(wildcard $(TOOLCHAIN_DIR)/lib/libc.so*)))
421
422 define Package/musl/install
423 $(INSTALL_DIR) $(1)/lib $(1)/usr/bin
424 $(CP) \
425 $(TOOLCHAIN_DIR)/lib/ld-musl-*.so* \
426 $(1)/lib/
427 $(CP) \
428 $(TOOLCHAIN_DIR)/lib/libc.so* \
429 $(1)/lib/
430 $(LN) ../../lib/$(LD_MUSL_NAME) $(1)/usr/bin/ldd
431 endef
432
433 define Package/libc/install
434 $(call Package/$(LIBC)/install,$1)
435 endef
436
437 define Package/libc/install_lib
438 $(CP) $(filter-out %/libdl_pic.a %/libpthread_pic.a %/libresolv_pic.a,$(wildcard $(TOOLCHAIN_DIR)/lib/lib*.a)) $(1)/lib/
439 $(if $(wildcard $(TOOLCHAIN_DIR)/lib/libc_so.a),$(CP) $(TOOLCHAIN_DIR)/lib/libc_so.a $(1)/lib/libc_pic.a)
440 $(if $(LIBGCC_MAP), \
441 $(CP) $(LIBGCC_A) $(1)/lib/libgcc_s_pic.a; \
442 $(CP) $(LIBGCC_MAP) $(1)/lib/libgcc_s_pic.map \
443 )
444 endef
445
446 define Package/libpthread/install
447 $(INSTALL_DIR) $(1)/lib
448 ifneq ($(CONFIG_USE_MUSL)$(CONFIG_USE_UCLIBC),y)
449 $(CP) \
450 $(TOOLCHAIN_DIR)/lib/libpthread.so.* \
451 $(TOOLCHAIN_DIR)/lib/libpthread-$(LIBC_SO_VERSION).so \
452 $(1)/lib/
453 endif
454 endef
455
456 define Package/libthread-db/install
457 $(INSTALL_DIR) $(1)/lib
458 $(CP) \
459 $(TOOLCHAIN_DIR)/lib/libthread_db.so.* $(1)/lib
460 ifeq ($(CONFIG_USE_UCLIBC),y)
461 $(CP) \
462 $(TOOLCHAIN_DIR)/lib/libthread_db-$(LIBC_SO_VERSION).so \
463 $(1)/lib/
464 endif
465 endef
466
467 define Package/libpthread/install_lib
468 $(if $(wildcard $(TOOLCHAIN_DIR)/lib/libpthread_so.a),$(CP) $(TOOLCHAIN_DIR)/lib/libpthread_so.a $(1)/lib/libpthread_pic.a)
469 endef
470
471 define Package/librt/install
472 $(INSTALL_DIR) $(1)/lib
473 ifneq ($(CONFIG_USE_MUSL)$(CONFIG_USE_UCLIBC),y)
474 $(CP) \
475 $(TOOLCHAIN_DIR)/lib/librt.so.* \
476 $(TOOLCHAIN_DIR)/lib/librt-$(LIBC_SO_VERSION).so \
477 $(1)/lib/
478 endif
479 endef
480
481 define Package/ldd/install
482 $(INSTALL_DIR) $(1)/usr/bin/
483 $(CP) $(TOOLCHAIN_DIR)/bin/ldd $(1)/usr/bin/
484 endef
485
486 define Package/ldconfig/install
487 $(INSTALL_DIR) $(1)/sbin/
488 $(CP) $(TOOLCHAIN_DIR)/sbin/ldconfig $(1)/sbin/
489 endef
490
491 else
492
493 define Package/libgcc/install
494 for file in $(call qstrip,$(CONFIG_LIBGCC_FILE_SPEC)); do \
495 $(INSTALL_DIR) $(1)/lib ; \
496 $(CP) $(call qstrip,$(CONFIG_LIBGCC_ROOT_DIR))/$$$$file $(1)/lib/ ; \
497 done ; \
498 exit 0
499 endef
500
501 define Package/libgfortran/install
502 for file in $(call qstrip,$(CONFIG_LIBGFORTRAN_FILE_SPEC)); do \
503 $(INSTALL_DIR) $(1)/lib ; \
504 $(CP) $(call qstrip,$(CONFIG_LIBGFORTRAN_ROOT_DIR))/$$$$file $(1)/lib/ ; \
505 done
506 endef
507
508 define Package/libssp/install
509 for file in $(call qstrip,$(CONFIG_LIBSSP_FILE_SPEC)); do \
510 $(INSTALL_DIR) $(1)/lib ; \
511 $(CP) $(call qstrip,$(CONFIG_LIBSSP_ROOT_DIR))/$$$$file $(1)/lib/ ; \
512 done ; \
513 exit 0
514 endef
515
516 define Package/libstdcpp/install
517 for file in $(call qstrip,$(CONFIG_LIBSTDCPP_FILE_SPEC)); do \
518 $(INSTALL_DIR) $(1)/lib ; \
519 $(CP) $(call qstrip,$(CONFIG_LIBSTDCPP_ROOT_DIR))/$$$$file $(1)/lib/ ; \
520 done ; \
521 exit 0
522 endef
523
524 define Package/libc/install
525 for file in $(call qstrip,$(CONFIG_LIBC_FILE_SPEC)); do \
526 $(INSTALL_DIR) $(1)/lib ; \
527 $(CP) $(call qstrip,$(CONFIG_LIBC_ROOT_DIR))/$$$$file $(1)/lib/ ; \
528 done ; \
529 exit 0
530 endef
531
532 define Package/libpthread/install
533 for file in $(call qstrip,$(CONFIG_LIBPTHREAD_FILE_SPEC)); do \
534 $(INSTALL_DIR) $(1)/lib ; \
535 $(CP) $(call qstrip,$(CONFIG_LIBPTHREAD_ROOT_DIR))/$$$$file $(1)/lib/ ; \
536 done ; \
537 exit 0
538 endef
539
540 define Package/libthread-db/install
541 for file in $(call qstrip,$(CONFIG_LIBTHREAD_DB_FILE_SPEC)); do \
542 $(INSTALL_DIR) $(1)/lib ; \
543 $(CP) $(call qstrip,$(CONFIG_LIBTHREAD_DB_ROOT_DIR))/$$$$file $(1)/lib/ ; \
544 done ; \
545 exit 0
546 endef
547
548 define Package/librt/install
549 for file in $(call qstrip,$(CONFIG_LIBRT_FILE_SPEC)); do \
550 $(INSTALL_DIR) $(1)/lib ; \
551 $(CP) $(call qstrip,$(CONFIG_LIBRT_ROOT_DIR))/$$$$file $(1)/lib/ ; \
552 done ; \
553 exit 0
554 endef
555
556 define Package/libatomic/install
557 for file in $(call qstrip,$(CONFIG_LIBATOMIC_FILE_SPEC)); do \
558 $(INSTALL_DIR) $(1)/lib ; \
559 $(CP) $(call qstrip,$(CONFIG_LIBATOMIC_ROOT_DIR))/$$$$file $(1)/lib/ ; \
560 done ; \
561 exit 0
562 endef
563
564 define Package/ldd/install
565 for file in $(call qstrip,$(CONFIG_LDD_FILE_SPEC)); do \
566 dir=`dirname $$$$file` ; \
567 $(INSTALL_DIR) $(1)/$$$$dir ; \
568 $(CP) $(call qstrip,$(CONFIG_LDD_ROOT_DIR))/$$$$file $(1)/$$$$dir/ ; \
569 done ; \
570 exit 0
571 endef
572
573 define Package/ldconfig/install
574 for file in $(call qstrip,$(CONFIG_LDCONFIG_FILE_SPEC)); do \
575 dir=`dirname $$$$file` ; \
576 $(INSTALL_DIR) $(1)/$$$$dir ; \
577 $(CP) $(call qstrip,$(CONFIG_LDCONFIG_ROOT_DIR))/$$$$file $(1)/$$$$dir/ ; \
578 done ; \
579 exit 0
580 endef
581
582 endif
583
584 $(eval $(call BuildPackage,libc))
585 $(eval $(call BuildPackage,libgcc))
586 $(eval $(call BuildPackage,libatomic))
587 $(eval $(call BuildPackage,libssp))
588 $(eval $(call BuildPackage,libstdcpp))
589 $(eval $(call BuildPackage,libpthread))
590 $(eval $(call BuildPackage,libthread-db))
591 $(eval $(call BuildPackage,librt))
592 $(eval $(call BuildPackage,libgfortran))
593 $(eval $(call BuildPackage,ldd))
594 $(eval $(call BuildPackage,ldconfig))