summaryrefslogtreecommitdiff
path: root/waf_libbsd.py (follow)
AgeCommit message (Collapse)Author
2020-09-30waf: Fix test module dependency checkChris Johns
2020-09-21build: Ensure mandatory compiler/linker flagsSebastian Huber
2020-09-16waf: Implement module dependency checking in the build systemChris Johns
- Do not build a test if a dependency is not enabled. - Perform a dependency check and generate an error if an enabled module depends on a disabled module. Closes #4077
2020-09-16build: Separate the kernel and user land include pathsChris Johns
- Provide support for separate user and kernel include paths in libbsd.py. - Update all added files with a suitable context to build them with. Supported contexts are `kernel` and `user`. - Kernel source use the kernel, CPU, and build header paths in this order. - User source use the user, kernel, CPU and build header paths in this order. The FreeBSD /usr/include tree has some kernel header files installed as well as user land header files. This complicates the separation as some kernel header files are not visible to user land code while other are. This is handled by appending the kernel header paths to the user header paths so user land code will include a user header with the same name as a kernel header over the kernel header but will find a kernel header if there is no matching user header file. Closes #4067
2020-09-16waf: Reformat to PEP8 using yapfChris Johns
2020-08-06build: Do not convert cflags to definesSebastian Huber
This makes it possible to use module-specific C flags, for example to instrument functions (-finstrument-functions).
2020-03-31testsuite: Using RTEMS tester functions at beginning and at the end of testsMoyano, Gabriel
puts() was replaced with rtems_test_begin() and rtems_test_end()
2020-03-05waf: Change the test configure check for libdebugger to it's libChris Johns
- Add support for a 'test-if-library' - Use rtems_waf's 'test_application()' fragment in the check_cc call Closes #3948
2020-02-10i386: Add to buildJan Sommer
2019-06-12config: Control the interface from the command line net config file.Chris Johns
2019-04-04Fix the sed generator for processing INI configuration files.Chris Johns
2019-02-18build: Make it possible to disable the testsSebastian Huber
2018-08-01waf: Allow to only generate lex and yacc.Christian Mauderer
In some applications, it's usefull if the files generated by lex or yacc are not build automatically. With that it is for example possible to create a wrapper source file that sets some defines before the generated code is parsed.
2018-05-24waf: Fix python3 compatibility.Christian Mauderer
2018-05-04waf: Allow to add libs per test.Christian Mauderer
Update #3419.
2018-05-03waf: Generate a rtems/bsd/modules.hChristian Mauderer
The generated file defines a RTEMS_BSD_MODULE_xxx for each enabled module. That is usefull for conditional compilation depending on whether a module is build not. Update #3351.
2018-05-03waf: Fix source code generators.Christian Mauderer
There have been some bugs with the strings left from the transition to directly building from libbsd.py.
2018-05-03waf: Fix usage of build-include from config.Christian Mauderer
2018-04-30Use network services from RTEMSSebastian Huber
Close #3419.
2018-04-10waf: Add configurations with different modules.Christian Mauderer
Update #3351
2018-04-10waf: Fix freebsd-to-rtems.py.Christian Mauderer
Update #3351
2018-04-10waf: Refactor libbsd.py to support per module generation.Chris Johns
This change allows us to control the modules we want to build. Update #3351
2018-04-10waf: Support building from libbsd.py directly from waf.Chris Johns
Remove the need to generate a waf script. Move various pieces of data from the builder code to libbsd.py and make it configuration data. Update #3351