diff options
author | Vegard Storheil Eriksen <zyp@jvnv.net> | 2011-04-11 05:46:10 +0200 |
---|---|---|
committer | Vegard Storheil Eriksen <zyp@jvnv.net> | 2011-04-11 05:46:10 +0200 |
commit | 82ffa82cc0423ed83ab94def6d3295f424a7c03c (patch) | |
tree | 3f95ee11a3c3d68371c33856bd5124eefe3c276b /SConstruct | |
parent | c6ac90fc731d8411380f582be3b91ce4e93f61fc (diff) |
Test IMU filter.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -13,7 +13,7 @@ env = Environment( #CPPDEFINES = [],
LINK = 'arm-none-eabi-gcc',
- LINKFLAGS = '-Wall -mcpu=cortex-m3 -mthumb -Wl,--gc-sections -Wl,-Tch.ld',
+ LINKFLAGS = '-Wall -mcpu=cortex-m3 -mthumb -Wl,-Tch.ld', # -Wl,--gc-sections
AR = 'arm-none-eabi-ar',
RANLIB = 'arm-none-eabi-ranlib',
@@ -24,7 +24,7 @@ env = Environment( ],
#LIBPATH = [],
- #LIBS = []
+ LIBS = ['m'],
)
sources = \
|