mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-20 13:23:08 +00:00
3ebc5d0c1e
This step was only used in uClibc. However, with upcoming multilib, the config management will have to be done for each variant differently, anyway. uClibc was the only user of libc_check_config step, as well as CT_CONFIG_DIR directory. Retire these. Two other clean-ups in uClibc.sh: - KERNEL_HEADERS check seems to be bogus, this config option is not present even in 0.9.30 - which is not supported already. - SHARED_LIB_LOADER_PREFIX was renamed to MULTILIB_DIR in 0.9.31, according to ChangeLog - and MULTILIB_DIR is passed from command line instead. Signed-off-by: Alexey Neyman <stilor@att.net>
24 lines
313 B
Bash
24 lines
313 B
Bash
# This file adds functions to build the C library for bare metal (IE. none)
|
|
# Copyright 2008 Yann E. MORIN
|
|
# Licensed under the GPL v2. See COPYING in the root of this package
|
|
|
|
do_libc_get() {
|
|
:
|
|
}
|
|
|
|
do_libc_extract() {
|
|
:
|
|
}
|
|
|
|
do_libc_start_files() {
|
|
:
|
|
}
|
|
|
|
do_libc() {
|
|
:
|
|
}
|
|
|
|
do_libc_post_cc() {
|
|
:
|
|
}
|