scripts/build/libc/none.sh
author Zhenqiang Chen <zhenqiang.chen@linaro.org>
Mon Nov 28 16:05:23 2011 +0800 (2011-11-28)
changeset 2787 85477445af56
parent 1112 c72aecd1a9ef
child 3162 e51eb0a614c7
permissions -rw-r--r--
libc/newlib: remove hard-coded "-O"

With hard-coded "-O", users can not customize CFLAGS_FOR_TARGET
by CT_TARGET_CFLAGS. If "-O" is needed, users can input it in
CT_TARGET_CFLAGS. By default, "-Os" is enabled.

Signed-off-by: Zhenqiang Chen <zhenqiang.chen@linaro.org>
     1 # This file adds functions to build the C library for bare metal (IE. none)
     2 # Copyright 2008 Yann E. MORIN
     3 # Licensed under the GPL v2. See COPYING in the root of this package
     4 
     5 do_libc_get() {
     6     :
     7 }
     8 
     9 do_libc_extract() {
    10     :
    11 }
    12 
    13 do_libc_check_config() {
    14     :
    15 }
    16 
    17 do_libc_start_files() {
    18     :
    19 }
    20 
    21 do_libc() {
    22     :
    23 }
    24 
    25 do_libc_finish() {
    26     :
    27 }