提交 914e2818 编写于 作者: B bernard.xiong

add more stub for newlib porting.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@669 bbd45198-f89e-11dd-88c7-29a3b14d5316
上级 c8efa6b3
......@@ -22,7 +22,7 @@ if 'RT_USING_LWIP' in dir(rtconfig) and rtconfig.RT_USING_LWIP:
objs = objs + SConscript('net/lwip/SConscript')
if 'RT_USING_MODBUS' in dir(rtconfig) and rtconfig.RT_USING_MODBUS:
objs = objs + SConscript('net//freemodbus/SConscript')
objs = objs + SConscript('net/freemodbus/SConscript')
if 'RT_USING_RTGUI' in dir(rtconfig) and rtconfig.RT_USING_RTGUI:
objs = objs + SConscript('rtgui/SConscript')
......@@ -30,6 +30,5 @@ if 'RT_USING_RTGUI' in dir(rtconfig) and rtconfig.RT_USING_RTGUI:
# build each modules
if rtconfig.CROSS_TOOL == 'gcc':
SConscript('hello/SConscript')
SConscript('thread/SConscript')
Return('objs')
......@@ -59,6 +59,7 @@
/*@{*/
#if defined(RT_USING_NEWLIB) || defined (RT_USING_MINILIBC)
#include <sys/types.h>
#include <string.h>
#else
typedef unsigned char u_char;
......
#include <math.h>
/* Fix me */
double sin(double x)
{
#warning sin function not supported for this platform
}
double cos(double x)
{
#warning cos function not supported for this platform
}
#include <reent.h>
#include <sys/errno.h>
int _fork_r (struct _reent *ptr)
int _fork_r (struct _reent *r)
{
/* return "not supported" */
ptr->errno = ENOTSUP;
r->_errno = ENOTSUP;
return -1;
}
_ssize_t
_read_r (struct _reent *r, int fd, void *buf, size_t nbytes)
{
_ssize_t rc;
rc = -1;
/* return "not supported" */
r->_errno = ENOTSUP;
return rc;
}
_ssize_t
_write_r (struct _reent *r, int fd, const void *buf, size_t nbytes)
{
_ssize_t rc;
rc = -1;
/* return "not supported" */
r->_errno = ENOTSUP;
return rc;
}
int
_close_r (struct _reent *r, int fd)
{
_ssize_t rc;
rc = -1;
/* return "not supported" */
r->_errno = ENOTSUP;
return rc;
}
_off_t
_lseek_r (struct _reent *r, int fd, _off_t offset, int whence)
{
_ssize_t rc;
rc = -1;
/* return "not supported" */
r->_errno = ENOTSUP;
return rc;
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册