Browse Source

Newlib: link with libm in default.

libm is a frequently used lib. Newlib is compiled with
-ffunction-sections in recent GCC tool chains. The linker would just
link in the functions that have been referenced. So setting this won't
result in bigger text size.
Grissiom 12 năm trước cách đây
mục cha
commit
8ad12057c4
1 tập tin đã thay đổi với 6 bổ sung0 xóa
  1. 6 0
      components/libc/newlib/SConscript

+ 6 - 0
components/libc/newlib/SConscript

@@ -11,6 +11,12 @@ cwd = GetCurrentDir()
 src	= Glob('*.c')
 CPPPATH = [cwd]
 
+# link with libm in default.
+# libm is a frequently used lib. Newlib is compiled with -ffunction-sections in
+# recent GCC tool chains. The linker would just link in the functions that have
+# been referenced. So setting this won't result in bigger text size.
+Env.Append(LIBS = ['m'])
+
 group = DefineGroup('newlib', src, depend = ['RT_USING_NEWLIB'], CPPPATH = CPPPATH)
 
 Return('group')