summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/protocol-4.txt5
-rw-r--r--meson.build2
2 files changed, 4 insertions, 3 deletions
diff --git a/doc/protocol-4.txt b/doc/protocol-4.txt
index 608b651..b988d97 100644
--- a/doc/protocol-4.txt
+++ b/doc/protocol-4.txt
@@ -8,7 +8,7 @@ This document is provided as explanation for people developing or
debugging distcc. Discrepancies between this document and the distcc
code are an error in the document.
-This document is intended to describe distcc 3.2.
+This document is intended to describe distcc 3.4.
Because this program and document is licensed free of charge, there is
no warranty of any kind, to the extent permitted by applicable law.
@@ -35,4 +35,5 @@ not compressed but rather sent directly as zero bytes.
A DDWO token is send after DOTO, comprising the debug information (.dwo),
if available. See https://gcc.gnu.org/wiki/DebugFission It is compressed
-with Zstd.
+with Zstd. This isn't as important now that we have lld, which does not
+mmap the whole object file, so debug sections no longer take virtual memory.
diff --git a/meson.build b/meson.build
index 5e4059f..5619a99 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('distcc', 'c',
- version : '3.2rc1',
+ version : '3.4',
license : 'GPLv2+',
default_options: [
'c_std=gnu99',