summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-08-22 12:18:23 -0400
committerDavid Robillard <d@drobilla.net>2022-08-22 12:18:23 -0400
commit9c0d642a5397f418ba5c4882cc6b18e903af068f (patch)
tree60b57617bc8fd4e9335a6d652d334a1dd53ab180
parentcd349fd4f278bdf63aab2c2e477e8bad868e96ff (diff)
downloadpatchage-9c0d642a5397f418ba5c4882cc6b18e903af068f.tar.gz
patchage-9c0d642a5397f418ba5c4882cc6b18e903af068f.tar.bz2
patchage-9c0d642a5397f418ba5c4882cc6b18e903af068f.zip
Fix installation instructions for C++
-rw-r--r--INSTALL.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 903e680..36bca7c 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -25,8 +25,8 @@ directory with the given name:
Some environment variables are read during `setup` and stored with the
configuration:
- * `CC`: Path to C compiler.
- * `CFLAGS`: C compiler options.
+ * `CXX`: Path to C++ compiler.
+ * `CXXFLAGS`: C++ compiler options.
* `LDFLAGS`: Linker options.
However, it is better to use meson options for configuration. All options can
@@ -37,7 +37,7 @@ be inspected with the `configure` command from within the build directory:
Options can be set by passing C-style "define" options to `configure`:
- meson configure -Dc_args="-march=native" -Dprefix="/opt/mypackage/"
+ meson configure -Dcpp_args="-march=native" -Dprefix="/opt/mypackage/"
Note that some options, such as `strict` and `werror` are for
developer/maintainer use only. Please don't file issues about anything that