[libc]rename group name

This commit is contained in:
Meco Man
2021-12-30 01:27:25 +08:00
committed by Bernard Xiong
parent ed09f38012
commit c8dcf7cc68
16 changed files with 17 additions and 17 deletions
+1 -1
View File
@@ -7,6 +7,6 @@ group = []
CPPDEFINES = ['RT_USING_ARM_LIBC']
if rtconfig.PLATFORM == 'armcc' or rtconfig.PLATFORM == 'armclang':
group = DefineGroup('compiler-libc', src, depend = [], CPPDEFINES = CPPDEFINES)
group = DefineGroup('Compiler', src, depend = [''], CPPDEFINES = CPPDEFINES)
Return('group')
+2 -2
View File
@@ -155,7 +155,7 @@ int _sys_read(FILEHANDLE fh, unsigned char *buf, unsigned len, int mode)
#ifdef RT_USING_POSIX_DEVIO
if (libc_stdio_get_console() < 0)
{
LOG_W("Do not invoke standard output before initializing compiler-libc");
LOG_W("Do not invoke standard output before initializing Compiler");
return 0; /* error, but keep going */
}
size = read(STDIN_FILENO, buf, len);
@@ -354,7 +354,7 @@ int fgetc(FILE *f)
if (libc_stdio_get_console() < 0)
{
LOG_W("Do not invoke standard output before initializing compiler-libc");
LOG_W("Do not invoke standard output before initializing Compiler");
return 0;
}