diff options
author | jade <lix@jade.fyi> | 2024-05-23 23:19:28 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@lix-systems> | 2024-05-23 23:19:28 +0000 |
commit | 9530b7f2b2b653fc11753ce452636896350324ff (patch) | |
tree | 837593bceacff5f2760594c5a115242ec63ddca9 /doc/manual/src/contributing/hacking.md | |
parent | 677cf75473d0dd86119c4535d8733a6a0b1100c0 (diff) | |
parent | c97e17144e0d0b666d7b79d8b4b0d581bfdf373b (diff) |
Merge "packaging: rename nixexpr -> lixexpr and so on" into main
Diffstat (limited to 'doc/manual/src/contributing/hacking.md')
-rw-r--r-- | doc/manual/src/contributing/hacking.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/manual/src/contributing/hacking.md b/doc/manual/src/contributing/hacking.md index a8591e7ca..a73d672d4 100644 --- a/doc/manual/src/contributing/hacking.md +++ b/doc/manual/src/contributing/hacking.md @@ -102,14 +102,14 @@ $ meson compile -C build nixexpr All targets may be addressed as their output, relative to the build directory, e.g.: ```bash -$ meson compile -C build src/libexpr/libnixexpr.so +$ meson compile -C build src/libexpr/liblixexpr.so ``` But Meson does not consider intermediate files like object files targets. To build a specific object file, use Ninja directly and specify the output file relative to the build directory: ```bash -$ ninja -C build src/libexpr/libnixexpr.so.p/nixexpr.cc.o +$ ninja -C build src/libexpr/liblixexpr.so.p/nixexpr.cc.o ``` To inspect the canonical source of truth on what the state of the buildsystem configuration is, use: |