summaryrefslogtreecommitdiffstats
path: root/libbsd_waf.py
diff options
context:
space:
mode:
Diffstat (limited to 'libbsd_waf.py')
-rw-r--r--libbsd_waf.py12
1 files changed, 11 insertions, 1 deletions
diff --git a/libbsd_waf.py b/libbsd_waf.py
index 76cbf995..5c24b93f 100644
--- a/libbsd_waf.py
+++ b/libbsd_waf.py
@@ -34,7 +34,7 @@ def configure(conf):
def build(bld):
# C/C++ flags
common_flags = []
- common_flags += ["-O2"]
+ common_flags += ["-O0"]
common_flags += ["-g"]
common_flags += ["-fno-strict-aliasing"]
common_flags += ["-ffreestanding"]
@@ -1407,6 +1407,16 @@ def build(bld):
lib = ["m", "z"],
install_path = None)
+ test_program01 = ['testsuite/program01/test_main.c']
+ bld.program(target = "program01.exe",
+ features = "cprogram",
+ cflags = cflags,
+ includes = includes,
+ source = test_program01,
+ use = ["bsd"],
+ lib = ["m", "z"],
+ install_path = None)
+
test_rcconf01 = ['testsuite/rcconf01/test_main.c']
bld.program(target = "rcconf01.exe",
features = "cprogram",