config/libc/newlib.in
branchnewlib
changeset 1363 87f25f1d25d0
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/config/libc/newlib.in	Sun Mar 22 23:33:43 2009 +0000
     1.3 @@ -0,0 +1,53 @@
     1.4 +# options for newlib
     1.5 +# depends on EXPERIMENTAL
     1.6 +
     1.7 +config LIBC_newlib
     1.8 +    help
     1.9 +      A really small C library, primarly used for bare-metal.
    1.10 +      Also serves as C library for Cygwin.
    1.11 +
    1.12 +choice
    1.13 +    bool
    1.14 +    prompt "newlib version"
    1.15 +
    1.16 +config LIBC_V_1_14_0
    1.17 +    bool
    1.18 +    prompt "1.14.0"
    1.19 +
    1.20 +config LIBC_V_1_15_0
    1.21 +    bool
    1.22 +    prompt "1.15.0"
    1.23 +
    1.24 +config LIBC_V_1_16_0
    1.25 +    bool
    1.26 +    prompt "1.16.0"
    1.27 +
    1.28 +config LIBC_V_1_17_0
    1.29 +    bool
    1.30 +    prompt "1.17.0"
    1.31 +
    1.32 +# CT_INSERT_VERSION_ABOVE
    1.33 +# Don't remove above line!
    1.34 +
    1.35 +config LIBC_NEWLIB_CVS
    1.36 +    bool
    1.37 +    prompt "CVS snapshot"
    1.38 +
    1.39 +if LIBC_NEWLIB_CVS
    1.40 +config LIBC_NEWLIB_CVS_DATE
    1.41 +    string
    1.42 +    prompt "checkout as of date"
    1.43 +    help
    1.44 +      The date, in ISO-8601 format, at which to check out the repository.
    1.45 +endif # LIBC_NEWLIB_CVS
    1.46 +
    1.47 +endchoice
    1.48 +
    1.49 +config LIBC_VERSION
    1.50 +    string
    1.51 +    default "1.14.0" if LIBC_V_1_14_0
    1.52 +    default "1.15.0" if LIBC_V_1_15_0
    1.53 +    default "1.16.0" if LIBC_V_1_16_0
    1.54 +    default "1.17.0" if LIBC_V_1_17_0
    1.55 +# CT_INSERT_VERSION_STRING_ABOVE
    1.56 +# Don't remove above line!