summaryrefslogtreecommitdiffstats
path: root/lvgl.py
diff options
context:
space:
mode:
Diffstat (limited to 'lvgl.py')
-rw-r--r--lvgl.py11
1 files changed, 1 insertions, 10 deletions
diff --git a/lvgl.py b/lvgl.py
index 5452ed0..f275287 100644
--- a/lvgl.py
+++ b/lvgl.py
@@ -68,26 +68,17 @@ def build(bld):
sources, includes = source_list(bld)
includes.append('.')
- objects = []
include_paths = []
for source in sources:
- objects.append(source[:-1] + 'o')
source_dir = os.path.dirname(source)
if source_dir not in include_paths:
include_paths.append(source_dir)
- bld.objects(target = objects,
- features = 'c',
- cflags = '-O2',
- includes = includes,
- source = source)
-
bld.stlib(target = 'lvgl',
features = 'c',
includes = includes,
- source = sources,
- use = objects)
+ source = sources)
arch_lib_path = rtems.arch_bsp_lib_path(bld.env.RTEMS_VERSION,
bld.env.RTEMS_ARCH_BSP)