Changeset 7aaa9a1 in rtems-libbsd
- Timestamp:
- Aug 3, 2016, 11:27:11 AM (4 years ago)
- Branches:
- b96abfd647154f10ea8f7fac68e25676636eded5, debc0aed8b9bef9996b8ec0ae7a70b0b41912e27, 68e79b6d187fe09b0a6f3f1d22c69b4121a3f76e, freebsd-9.3, 33bfaee89aa71d2252eb48d6b9a9ec17183faced
- Children:
- 2fb3a36
- Parents:
- f1941b2
- git-author:
- Christian Mauderer <Christian.Mauderer@…> (08/03/16 11:27:11)
- git-committer:
- Christian Mauderer <Christian.Mauderer@…> (08/03/16 11:58:38)
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libbsd.py
rf1941b2 r7aaa9a1 2569 2569 mod.addTest(mm.generator['test']('cdev01', ['test_main', 'test_cdev'])) 2570 2570 mod.addTest(mm.generator['test']('pf01', ['test_main'])) 2571 mod.addTest(mm.generator['test']('pf02', ['test_main'], runTest = False)) 2571 2572 return mod 2572 2573 -
libbsd_waf.py
rf1941b2 r7aaa9a1 35 35 # C/C++ flags 36 36 common_flags = [] 37 common_flags += ["-O 0"]37 common_flags += ["-O2"] 38 38 common_flags += ["-g"] 39 39 common_flags += ["-fno-strict-aliasing"] … … 1408 1408 install_path = None) 1409 1409 1410 test_pf02 = ['testsuite/pf02/test_main.c'] 1411 bld.program(target = "pf02.exe", 1412 features = "cprogram", 1413 cflags = cflags, 1414 includes = includes, 1415 source = test_pf02, 1416 use = ["bsd"], 1417 lib = ["m", "z"], 1418 install_path = None) 1419 1410 1420 test_ping01 = ['testsuite/ping01/test_main.c'] 1411 1421 bld.program(target = "ping01.exe",
Note: See TracChangeset
for help on using the changeset viewer.