mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-09-22 03:09:16 +08:00
[tools] update the comment for old gen cconfig.h code.
This commit is contained in:
committed by
Man, Jianting (Meco)
parent
5c70c9e402
commit
00a6d1a1c5
+3
-1
@@ -123,7 +123,9 @@ class Win32Spawn:
|
|||||||
|
|
||||||
# generate cconfig.h file
|
# generate cconfig.h file
|
||||||
def GenCconfigFile(env, BuildOptions):
|
def GenCconfigFile(env, BuildOptions):
|
||||||
|
# The cconfig.h will NOT generate in the lastest RT-Thread code.
|
||||||
|
# When you want to use it, you can uncomment out the following code.
|
||||||
|
|
||||||
# if rtconfig.PLATFORM in ['gcc']:
|
# if rtconfig.PLATFORM in ['gcc']:
|
||||||
# contents = ''
|
# contents = ''
|
||||||
# if not os.path.isfile('cconfig.h'):
|
# if not os.path.isfile('cconfig.h'):
|
||||||
|
|||||||
+34
-35
@@ -199,44 +199,43 @@ def GCCResult(rtconfig, str):
|
|||||||
return result
|
return result
|
||||||
|
|
||||||
def GenerateGCCConfig(rtconfig):
|
def GenerateGCCConfig(rtconfig):
|
||||||
# str = ''
|
str = ''
|
||||||
# cc_header = ''
|
cc_header = ''
|
||||||
# cc_header += '#ifndef CCONFIG_H__\n'
|
cc_header += '#ifndef CCONFIG_H__\n'
|
||||||
# cc_header += '#define CCONFIG_H__\n'
|
cc_header += '#define CCONFIG_H__\n'
|
||||||
# cc_header += '/* Automatically generated file; DO NOT EDIT. */\n'
|
cc_header += '/* Automatically generated file; DO NOT EDIT. */\n'
|
||||||
# cc_header += '/* compiler configure file for RT-Thread in GCC*/\n\n'
|
cc_header += '/* compiler configure file for RT-Thread in GCC*/\n\n'
|
||||||
|
|
||||||
# if CheckHeader(rtconfig, 'newlib.h'):
|
if CheckHeader(rtconfig, 'newlib.h'):
|
||||||
# str += '#include <newlib.h>\n'
|
str += '#include <newlib.h>\n'
|
||||||
# cc_header += '#define HAVE_NEWLIB_H 1\n'
|
cc_header += '#define HAVE_NEWLIB_H 1\n'
|
||||||
# cc_header += '#define LIBC_VERSION "newlib %s"\n\n' % GetNewLibVersion(rtconfig)
|
cc_header += '#define LIBC_VERSION "newlib %s"\n\n' % GetNewLibVersion(rtconfig)
|
||||||
|
|
||||||
# if CheckHeader(rtconfig, 'sys/signal.h'):
|
if CheckHeader(rtconfig, 'sys/signal.h'):
|
||||||
# str += '#include <sys/signal.h>\n'
|
str += '#include <sys/signal.h>\n'
|
||||||
# cc_header += '#define HAVE_SYS_SIGNAL_H 1\n'
|
cc_header += '#define HAVE_SYS_SIGNAL_H 1\n'
|
||||||
# if CheckHeader(rtconfig, 'sys/select.h'):
|
if CheckHeader(rtconfig, 'sys/select.h'):
|
||||||
# str += '#include <sys/select.h>\n'
|
str += '#include <sys/select.h>\n'
|
||||||
# cc_header += '#define HAVE_SYS_SELECT_H 1\n'
|
cc_header += '#define HAVE_SYS_SELECT_H 1\n'
|
||||||
# if CheckHeader(rtconfig, 'pthread.h'):
|
if CheckHeader(rtconfig, 'pthread.h'):
|
||||||
# str += "#include <pthread.h>\n"
|
str += "#include <pthread.h>\n"
|
||||||
# cc_header += '#define HAVE_PTHREAD_H 1\n'
|
cc_header += '#define HAVE_PTHREAD_H 1\n'
|
||||||
|
|
||||||
# # if CheckHeader(rtconfig, 'sys/dirent.h'):
|
# if CheckHeader(rtconfig, 'sys/dirent.h'):
|
||||||
# # str += '#include <sys/dirent.h>\n'
|
# str += '#include <sys/dirent.h>\n'
|
||||||
|
|
||||||
# # add some common features
|
# add some common features
|
||||||
# str += 'const char* version = __VERSION__;\n'
|
str += 'const char* version = __VERSION__;\n'
|
||||||
# str += 'const int iso_c_visible = __ISO_C_VISIBLE;\n'
|
str += 'const int iso_c_visible = __ISO_C_VISIBLE;\n'
|
||||||
# str += '\n#ifdef HAVE_INITFINI_ARRAY\n'
|
str += '\n#ifdef HAVE_INITFINI_ARRAY\n'
|
||||||
# str += 'const int init_fini_array = HAVE_INITFINI_ARRAY;\n'
|
str += 'const int init_fini_array = HAVE_INITFINI_ARRAY;\n'
|
||||||
# str += '#endif\n'
|
str += '#endif\n'
|
||||||
|
|
||||||
# cc_header += '\n'
|
cc_header += '\n'
|
||||||
# cc_header += GCCResult(rtconfig, str)
|
cc_header += GCCResult(rtconfig, str)
|
||||||
# cc_header += '\n#endif\n'
|
cc_header += '\n#endif\n'
|
||||||
|
|
||||||
# cc_file = open('cconfig.h', 'w')
|
cc_file = open('cconfig.h', 'w')
|
||||||
# if cc_file:
|
if cc_file:
|
||||||
# cc_file.write(cc_header)
|
cc_file.write(cc_header)
|
||||||
# cc_file.close()
|
cc_file.close()
|
||||||
pass
|
|
||||||
|
|||||||
Reference in New Issue
Block a user