-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10990 from xclaesse/devenv
devenv: various improvements
- Loading branch information
Showing
8 changed files
with
84 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
## Developer environment improvements | ||
|
||
When cross compiling, the developer environment now sets all environment | ||
variables for the HOST machine. It now also sets `QEMU_LD_PREFIX` to the | ||
`sys_root` value from cross file if property is defined. That means that cross | ||
compiled executables can often be run transparently on the build machine, for | ||
example when cross compiling for aarch64 linux from x86_64 linux. | ||
|
||
A new argument `--workdir` has been added, by default it is set to build | ||
directory. For example, `meson devenv -C builddir --workdir .` can be used to | ||
remain in the current dir (often source dir) instead. | ||
|
||
`--dump` now prints shell commands like `FOO="/prepend/path:$FOO:/append/path"`, | ||
using the litteral `$FOO` instead of current value of `FOO` from environment. | ||
This makes easier to evaluate those expressions in a different environment. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters