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
This commit is contained in:
Thomas Martitz 2010-06-22 18:34:03 +00:00
parent be66e4d642
commit f32bd593c4
11 changed files with 38 additions and 16 deletions

View file

@ -35,6 +35,7 @@ QUICKREF
#include <string.h>
#include <limits.h>
#include "_ansi.h" /* for _DEFUN */
/* Nonzero if X is not aligned on a "long" boundary. */
#define UNALIGNED(X) ((long)X & (sizeof (long) - 1))

View file

@ -37,7 +37,7 @@ QUICKREF
*/
#include <string.h>
#include "_ansi.h" /* for _DEFUN */
/* Nonzero if either X or Y is not aligned on a "long" boundary. */
#define UNALIGNED(X, Y) \

View file

@ -33,7 +33,7 @@ QUICKREF
*/
#include "config.h"
#include <_ansi.h>
#include "_ansi.h" /* for _DEFUN */
#include <string.h>
/* Nonzero if either X or Y is not aligned on a "long" boundary. */

View file

@ -35,6 +35,7 @@ QUICKREF
#include <string.h>
#include <limits.h>
#include "_ansi.h" /* for _DEFUN */
/* Nonzero if X is not aligned on a "long" boundary. */
#define UNALIGNED(X) ((long)X & (sizeof (long) - 1))

View file

@ -37,6 +37,7 @@ QUICKREF
#include <string.h>
#include <limits.h>
#include "_ansi.h" /* for _DEFUN */
/* Nonzero if either X or Y is not aligned on a "long" boundary. */
#define UNALIGNED(X, Y) \

View file

@ -34,6 +34,7 @@ QUICKREF
#include <string.h>
#include <limits.h>
#include "_ansi.h" /* for _DEFUN */
/*SUPPRESS 560*/
/*SUPPRESS 530*/

View file

@ -32,7 +32,7 @@ QUICKREF
*/
#include "config.h"
#include <_ansi.h>
#include "_ansi.h"
#include <string.h>
#include <limits.h>

View file

@ -38,6 +38,7 @@ QUICKREF
#include <string.h>
#include <limits.h>
#include "_ansi.h" /* for _DEFUN */
/* Nonzero if either X or Y is not aligned on a "long" boundary. */
#define UNALIGNED(X, Y) \

View file

@ -34,6 +34,7 @@ QUICKREF
*/
#include <string.h>
#include "_ansi.h" /* for _DEFUN */
char *
_DEFUN (strrchr, (s, i),