diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-06-22 18:34:03 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-06-22 18:34:03 +0000 |
| commit | f32bd593c426755a140556ed1b5230447e5da726 (patch) | |
| tree | 281f06c98f1f5408d8bf239ab722ff32e51994f9 /tools | |
| parent | be66e4d64269176848d4f82d95596745dc17679c (diff) | |
| download | rockbox-f32bd593c426755a140556ed1b5230447e5da726.zip rockbox-f32bd593c426755a140556ed1b5230447e5da726.tar.gz rockbox-f32bd593c426755a140556ed1b5230447e5da726.tar.bz2 rockbox-f32bd593c426755a140556ed1b5230447e5da726.tar.xz | |
Add an advanced build option to force compiling and linking our reduced C library (probably useful for the sim).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27059 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/configure | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tools/configure b/tools/configure index 9f5b5cf..277436d 100755 --- a/tools/configure +++ b/tools/configure @@ -383,8 +383,9 @@ whichadvanced () { else interact=1 echo "" - echo "Enter your developer options (press enter when done)" - printf "(D)EBUG, (L)ogf, Boot(c)hart, (S)imulator, (P)rofiling, (V)oice, (W)in32 crosscompile, (T)est plugins" + printf "Enter your developer options (press only enter when done)\n\ +(D)EBUG, (L)ogf, Boot(c)hart, (S)imulator, (P)rofiling, (V)oice, (W)in32 crosscompile,\n\ +(T)est plugins, S(m)all C lib:" if [ "$memory" = "2" ]; then printf ", (8)MB MOD" fi @@ -425,6 +426,10 @@ whichadvanced () { echo "logf() support enabled" logf="yes" ;; + [Mm]) + echo "Using Rockbox' small C library" + extradefines="$extradefines -DHAVE_ROCKBOX_C_LIBRARY" + ;; [Tt]) echo "Including test plugins" extradefines="$extradefines -DHAVE_TEST_PLUGINS" |