summaryrefslogtreecommitdiffstats
path: root/wscript (follow)
Commit message (Collapse)AuthorAgeFilesLines
* build: Fix script actionSebastian Huber2024-02-281-2/+8
| | | | | We have to use a custom dictionary to be able to set the "value" argument in the exec() context.
* build: Add assert-in-set option actionSebastian Huber2023-12-061-0/+8
|
* waf: Fix Python 3.12 escape sequencesChris Johns2023-11-231-1/+1
| | | | Updates #4968
* build: Let the get-integer action return NoneSebastian Huber2023-10-231-2/+2
| | | | | If used with the format-and-define action, this will result in an undefined define.
* build: Remove enabled-by special caseSebastian Huber2023-09-221-9/+3
| | | | | | Doing the enabled-by processing just for the ldflags and just for the link custom commands is confusing. Use an option instead which is intended to be used for such use cases.
* build: Use build context for custom commandsSebastian Huber2023-09-111-5/+9
| | | | | | Revert duplicated listing of TEST_OPTIMIZATION_FLAGS. Close #4947.
* build: Allow enabled-by in ldflags for link_cc and link_cxxAlex White2023-08-301-3/+10
| | | | | | This allows for conditionally setting 'ldflags' in scripts that use `link_cc` and `link_cxx`. The immediate use case is allowing a linker flag to be used only for MicroBlaze builds of certain tests.
* build: Make gzip archives reproducibleSebastian Huber2023-08-141-1/+1
|
* build: Make tar archives reproducibleSebastian Huber2023-08-111-1/+10
| | | | This helps to make the build reproducible.
* build: Add PROGRAM_PREFIX optionSebastian Huber2023-08-031-22/+2
| | | | | Replace --rtems-version with a PROGRAM_PREFIX option. This allows also the use of vendor tools.
* build: Optionally use a VERSION fileSebastian Huber2023-08-021-57/+51
| | | | | | | | | | Define the RTEMS version in the wscript. Optionally use a VERSION file to change the default values of the wscript. Allow the command line option --rtems-version to override __RTEMS_MAJOR__. Remove support for command line configurable options (--rtems-option). Rename internal define RTEMS_VERSION_VC_KEY to RTEMS_VERSION_CONTROL_KEY.
* build: Format with yapfSebastian Huber2023-06-141-3/+2
|
* Update company nameSebastian Huber2023-05-201-1/+1
| | | | | The embedded brains GmbH & Co. KG is the legal successor of embedded brains GmbH.
* build: Print item UID in case of errorsSebastian Huber2023-03-061-2/+12
| | | | This helps to identify issues in build items.
* build: Use enabled by for defaultsSebastian Huber2023-01-171-30/+18
| | | | | | | | | | | | | | Merge the "default" and "default-by-variant" attributes. Use an "enabled-by" expression to select the default value based on the enabled set. This makes it possible to select default values depending on other options. For example you could choose memory settings based on whether RTEMS_SMP is enabled or disabled. The change was tested by comparing the output of ./waf bspdefaults before and after the change.
* build: Add reason to test state definitionsSebastian Huber2023-01-171-2/+3
|
* wscript: rename bsp_list to bsplistGedare Bloom2022-11-111-1/+1
|
* wscript: rename bsp_defaults to bspdefaultsGedare Bloom2022-11-111-9/+9
|
* wscript: fix formatting with yapfGedare Bloom2022-11-071-166/+139
|
* build: Allow separate optimization flagsSebastian Huber2022-07-041-1/+1
| | | | | | | | Allow separate optimization flags for the BSP, cpukit, and tests. For example, the BSP and cpukit may be built without optimization if coverage instrumentation is enabled, however, the tests may still use optimization. Update #4670.
* build: Add cppflags, cflags, cxxflags to groupsSebastian Huber2022-07-041-3/+3
| | | | | | | Propagate the group defined cppflags, cflags, and cxxflags from parent groups to child items through the build item context. Update #4670.
* build: Improve value substitutionSebastian Huber2022-07-041-9/+16
| | | | | | | | | | | | | | | | | | | | | | | | The waf build system uses lists for tool flags. The build items may use variable substitution. Add the ability to use the variable substitution in lists. For example: MORE_FLAGS = ['-more', '-flags'] flags: - -some-flag - ${MORE_FLAGS} Before this change, the ${MORE_FLAGS} was substituted to "-more -flags". This would be passed by waf as a single command line argument to the tool. After this change, the ${MORE_FLAGS} list extends the flags list: flags = ['-some-flag', '-more', '-flags'] This list extension is performed if a list element consists of exactly one variable. Update #4670.
* build: Fix identifier patternSebastian Huber2022-07-041-1/+1
| | | | | | Allow upper case characters in identifiers. Update #4670.
* build: Move BSP_INCLUDES splitSebastian Huber2022-07-041-1/+1
| | | | The goal is to let the build items define as much as possible.
* build: Add more flags to BuildItemContextSebastian Huber2022-07-041-23/+70
| | | | | | | Add cppflags, cflags, and cxxflags to BuildItemContext. This allows to propagate the flags from parent items to child items. Update #4670.
* build: Assert value properties only if not NoneSebastian Huber2022-06-081-9/+9
|
* wscript: Allow start code to be written in CKinsey Moore2022-04-261-1/+5
| | | | | | | Start code for most platforms requires hand-coded ASM but some can be bootstrapped entirely in C, especially for paravirtualized platforms. This change allows start code to be written in C where possible instead of requiring architecture-specific ASM to bridge to C.
* wscript: Allow substitution outside valuesKinsey Moore2022-04-141-26/+28
| | | | | | | | This expands the ability to substitute variables outside the current limitation of values in options to asflags, cflags, cppflags, cxxflags, ldflags, and includes. It is possible for all of these flags to utilize user-defined information in config.ini, especially for paths to external resources.
* build: Apply command line options to all variantsSebastian Huber2022-03-181-5/+3
| | | | Update #4548.
* build: Add --rtems-version command line optionSebastian Huber2021-11-171-2/+23
| | | | Update #4548.
* build: Support command line specified optionsSebastian Huber2021-11-161-2/+38
| | | | Update #4548.
* build: Merge default-by-family into by-variantSebastian Huber2021-08-181-4/+6
| | | | | | | Prefix the BSP family name with "bsps/" to make it distinct to the BSP variant names. Update #4468.
* build: Bring Item.link() in line with waf linkSebastian Huber2021-07-261-1/+1
| | | | | The LDFLAGS are placed after the static libraries in the standard waf link command, see "waflib/Tools/c.py" in the waf sources.
* build: Add "bsps/" prefix to BSP family enableSebastian Huber2021-07-221-1/+1
| | | | | BSP family and BSP variant names may be equal. This prefix avoids ambiguity in the enabled-by expressions.
* build: Use objects of build context for programsSebastian Huber2021-07-151-1/+1
|
* build: Add the BSP family to the enable setSebastian Huber2021-07-151-1/+6
| | | | | This makes it possible to use the BSP family in expressions of the enabled-by attribute.
* build: Fix formatSebastian Huber2021-07-151-1/+1
|
* build: Prefer variant default value over familySebastian Huber2021-07-151-4/+4
| | | | Update #4468.
* build: Fix bsp_defaults commandSebastian Huber2021-07-151-6/+8
| | | | Update #4468.
* build: Use BSP family for optionsChris Johns2021-07-151-13/+21
| | | | | | | - Optionally add support for 'default-by-family' to allow option to be set by a family and so all related BSPs Close #4468
* build: Fix format in wscriptSebastian Huber2021-02-231-1/+3
|
* build: Add CPPFLAGS to assembler command lineSebastian Huber2021-01-261-0/+1
| | | | | We use GCC to call the assembler. This means the assembler files are processed by the C preprocessor.
* build: Add ABI flags to gnatmake compiler flagsSebastian Huber2020-12-161-0/+2
|
* wscript: Apply test state expectations correctlyKinsey Moore2020-11-241-1/+1
| | | | | | | | The variety of expected test states are not currently applied to tests with names containing '-' correctly due to a failure to replace '-' with '_' before adding the CPPFLAGS to the environment for that test. This ensures that all additions of CPPFLAGS have that replacement performed so that the CPPFLAGS are applied properly during compilation.
* build: Fix cache file placementSebastian Huber2020-11-121-3/+5
| | | | | | The "bsp_list" and "bsp_defaults" commands get a waflib.Context object which has no build node. Use a hard coded build path for these commands.
* build: Place cache file in output directorySebastian Huber2020-11-051-2/+2
| | | | | | | | This improves support for the --out option. Previously, the cache file was placed in the source directory under "build/...". Now, it is placed in the output directory, which is "build" by default. So, if you don't use the --out option nothing changes. However, if you use the --out option, then the cache file is placed under the specified directory.
* build: Improve cache handlingSebastian Huber2020-10-281-1/+4
| | | | Check the directory modification time to notice file removals.
* build: Report caching errorsSebastian Huber2020-10-281-1/+1
| | | | | The ctx.fatal() method uses an exception to stop the build. Do not catch it.
* build: Use exact match by default for BSP namesSebastian Huber2020-10-021-2/+2
| | | | Update #3818.
* build: Add commentSebastian Huber2020-09-281-0/+4
| | | | Update #3818.