From a3d8c76e37510f43546bb384c58ed4188e166440 Mon Sep 17 00:00:00 2001 From: "Man, Jianting (Meco)" <920369182@qq.com> Date: Thu, 6 Apr 2023 21:44:31 -0400 Subject: [PATCH] [tools] comment out GenerateGCCConfig revert part of #7177 (#7188) --- tools/gcc.py | 72 +++++++++++++++++++++++++++------------------------- 1 file changed, 38 insertions(+), 34 deletions(-) diff --git a/tools/gcc.py b/tools/gcc.py index d806e6f3f0..905845f825 100644 --- a/tools/gcc.py +++ b/tools/gcc.py @@ -199,43 +199,47 @@ def GCCResult(rtconfig, str): return result def GenerateGCCConfig(rtconfig): - str = '' - cc_header = '' - cc_header += '#ifndef CCONFIG_H__\n' - cc_header += '#define CCONFIG_H__\n' - cc_header += '/* Automatically generated file; DO NOT EDIT. */\n' - cc_header += '/* compiler configure file for RT-Thread in GCC*/\n\n' + # 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 CheckHeader(rtconfig, 'newlib.h'): - str += '#include \n' - cc_header += '#define HAVE_NEWLIB_H 1\n' - cc_header += '#define LIBC_VERSION "newlib %s"\n\n' % GetNewLibVersion(rtconfig) + # str = '' + # cc_header = '' + # cc_header += '#ifndef CCONFIG_H__\n' + # cc_header += '#define CCONFIG_H__\n' + # cc_header += '/* Automatically generated file; DO NOT EDIT. */\n' + # cc_header += '/* compiler configure file for RT-Thread in GCC*/\n\n' - if CheckHeader(rtconfig, 'sys/signal.h'): - str += '#include \n' - cc_header += '#define HAVE_SYS_SIGNAL_H 1\n' - if CheckHeader(rtconfig, 'sys/select.h'): - str += '#include \n' - cc_header += '#define HAVE_SYS_SELECT_H 1\n' - if CheckHeader(rtconfig, 'pthread.h'): - str += "#include \n" - cc_header += '#define HAVE_PTHREAD_H 1\n' + # if CheckHeader(rtconfig, 'newlib.h'): + # str += '#include \n' + # cc_header += '#define HAVE_NEWLIB_H 1\n' + # cc_header += '#define LIBC_VERSION "newlib %s"\n\n' % GetNewLibVersion(rtconfig) - # if CheckHeader(rtconfig, 'sys/dirent.h'): - # str += '#include \n' + # if CheckHeader(rtconfig, 'sys/signal.h'): + # str += '#include \n' + # cc_header += '#define HAVE_SYS_SIGNAL_H 1\n' + # if CheckHeader(rtconfig, 'sys/select.h'): + # str += '#include \n' + # cc_header += '#define HAVE_SYS_SELECT_H 1\n' + # if CheckHeader(rtconfig, 'pthread.h'): + # str += "#include \n" + # cc_header += '#define HAVE_PTHREAD_H 1\n' - # add some common features - str += 'const char* version = __VERSION__;\n' - str += 'const int iso_c_visible = __ISO_C_VISIBLE;\n' - str += '\n#ifdef HAVE_INITFINI_ARRAY\n' - str += 'const int init_fini_array = HAVE_INITFINI_ARRAY;\n' - str += '#endif\n' + # # if CheckHeader(rtconfig, 'sys/dirent.h'): + # # str += '#include \n' - cc_header += '\n' - cc_header += GCCResult(rtconfig, str) - cc_header += '\n#endif\n' + # # add some common features + # str += 'const char* version = __VERSION__;\n' + # str += 'const int iso_c_visible = __ISO_C_VISIBLE;\n' + # str += '\n#ifdef HAVE_INITFINI_ARRAY\n' + # str += 'const int init_fini_array = HAVE_INITFINI_ARRAY;\n' + # str += '#endif\n' - cc_file = open('cconfig.h', 'w') - if cc_file: - cc_file.write(cc_header) - cc_file.close() + # cc_header += '\n' + # cc_header += GCCResult(rtconfig, str) + # cc_header += '\n#endif\n' + + # cc_file = open('cconfig.h', 'w') + # if cc_file: + # cc_file.write(cc_header) + # cc_file.close() + pass