We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d4768b commit 6130ba2Copy full SHA for 6130ba2
components/libc/cplusplus/SConscript
@@ -4,11 +4,13 @@ from building import *
4
Import('rtconfig')
5
6
cwd = GetCurrentDir()
7
-src = []
+src = Split('''
8
+cxx_crt_init.c
9
+''')
10
CPPPATH = [cwd]
11
12
if GetDepend('RT_USING_CPP_MULTITHREAD'):
- src = Glob('*.cpp') + Glob('*.c')
13
+ src += Glob('*.cpp')
14
if GetDepend('RT_USING_CPLUSPLUS11'):
15
src += Glob('cpp11/*.cpp') + Glob('cpp11/*.c')
16
if rtconfig.PLATFORM in ['armclang']:
0 commit comments