switch build system to Tup

git-svn-id: svn://kolibrios.org@5098 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
CleverMouse
2014-09-12 15:15:23 +00:00
parent 94776ec237
commit cd74d1af33
830 changed files with 17926 additions and 4404 deletions

View File

@@ -167,7 +167,7 @@ extern double j0 __P((double));
extern double j1 __P((double));
extern double jn __P((int, double));
extern double lgamma __P((double));
extern double nan __P((void));
extern double nan __P((const char*));
extern double y0 __P((double));
extern double y1 __P((double));
extern double yn __P((int, double));
@@ -187,7 +187,7 @@ extern double nextafter __P((double, double));
extern double pow10 __P((double));
extern double pow2 __P((double));
extern double powi __P((double, int));
extern void sincos __P((double *, double *, double));
extern void sincos __P((double, double *, double *));
extern double remainder __P((double, double));
extern double scalb __P((double, double));
@@ -263,7 +263,7 @@ extern float j0f __P((float));
extern float j1f __P((float));
extern float jnf __P((int, float));
extern float lgammaf __P((float));
extern float nanf __P((void));
extern float nanf __P((const char*));
extern float y0f __P((float));
extern float y1f __P((float));
extern float ynf __P((int, float));

View File

@@ -74,7 +74,7 @@ long double modfl(long double _x, long double *_pint);
double pow10(double _x);
double pow2(double _x);
double powi(double, int);
void sincos(double *, double *, double);
void sincos(double, double *, double *);
/* These are in libm.a (Cygnus). You must link -lm to get these */
/* See libm/math.h for comments */
@@ -100,7 +100,7 @@ extern double j0(double);
extern double j1(double);
extern double jn(int, double);
extern double lgamma(double);
extern double nan(void);
extern double nan(const char*);
extern double y0(double);
extern double y1(double);
extern double yn(int, double);
@@ -152,7 +152,7 @@ extern float j0f(float);
extern float j1f(float);
extern float jnf(int, float);
extern float lgammaf(float);
extern float nanf(void);
extern float nanf(const char*);
extern float y0f(float);
extern float y1f(float);
extern float ynf(int, float);

View File

@@ -5,6 +5,7 @@ SECTIONS
.text 0x000000 :
{
code = . ; _code = . ;
*(.A)
*(.text)
*(.fixup)
*(.gnu.warning)
@@ -43,6 +44,24 @@ SECTIONS
{
*(.bss)
}
end = . ; _end = . ;
end = . ; _end = . ; ___memsize = . ;
/DISCARD/ :
{
*(.debug$S)
*(.debug$T)
*(.debug$F)
*(.drectve)
*(.note.GNU-stack)
*(.eh_frame)
*(.comment)
*(.debug_abbrev)
*(.debug_info)
*(.debug_line)
*(.debug_frame)
*(.debug_loc)
*(.debug_pubnames)
*(.debug_aranges)
*(.debug_ranges)
}
}

View File

@@ -49,8 +49,8 @@ size_t strxfrm(char *_s1, const char *_s2, size_t _n);
#include <sys/movedata.h>
int bcmp(const void *_ptr1, const void *_ptr2, int _length);
void * bcopy(const void *_a, void *_b, size_t _len);
void * bzero(void *ptr, size_t _len);
void bcopy(const void *_a, void *_b, size_t _len);
void bzero(void *ptr, size_t _len);
int ffs(int _mask);
char * index(const char *_string, int _c);
void * memccpy(void *_to, const void *_from, int c, size_t n);