diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-01-08 11:38:14 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-01-08 11:40:25 -0800 |
commit | 4a8e8b710385a221bffd2e0b081ca98f4abb9c07 (patch) | |
tree | 062006faafd4aae7511cd5984dbac374c7e95eda | |
parent | c1b01d54c2418d9dc29fa1c3779be04ea74c2834 (diff) | |
download | meson-4a8e8b710385a221bffd2e0b081ca98f4abb9c07.zip meson-4a8e8b710385a221bffd2e0b081ca98f4abb9c07.tar.gz meson-4a8e8b710385a221bffd2e0b081ca98f4abb9c07.tar.bz2 |
docs: further specify that CFLAGS and friends are only for distro packagers [skip ci]
-rw-r--r-- | docs/markdown/howtox.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/markdown/howtox.md b/docs/markdown/howtox.md index adcec7c..3d8515f 100644 --- a/docs/markdown/howtox.md +++ b/docs/markdown/howtox.md @@ -52,7 +52,9 @@ executable(..., dependencies : thread_dep) ## Set extra compiler and linker flags from the outside (when e.g. building distro packages) -The behavior is the same as with other build systems, with environment variables during first invocation. +The behavior is the same as with other build systems, with environment +variables during first invocation. Do not use these when you need to rebuild +the source ```console $ CFLAGS=-fsomething LDFLAGS=-Wl,--linker-flag meson <options> |