From bf0f36404ee2c6ca0bac0ed931d9d606c4f6a1ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20K=C3=BCthe?= Date: Mon, 9 Jan 2023 15:23:51 +0100 Subject: [PATCH] buildtype and optimatzion is redundand MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marek Küthe --- docs/tunneling/fastd-compile-install.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/tunneling/fastd-compile-install.md b/docs/tunneling/fastd-compile-install.md index c6e7c90..0f28b91 100644 --- a/docs/tunneling/fastd-compile-install.md +++ b/docs/tunneling/fastd-compile-install.md @@ -23,8 +23,7 @@ meson setup fastd fastd-build -Dbuildtype=release -Db_lto=true -Dcapabilities=en ``` `-Db_lto=true` activates link-time optimizations. `-Dcapabilities=enabled` enables the option that fastd can later negotiate capabilities with its peer accordingly. `-Doffload_l2tp=enabled` enables the option to later offload L2TP connections in fastd to the kernel and thus increase speed. -In addition, the `-Doptimization=3` flag can be used to perform strong optimizations. The flag `-Dmethod_cipher-test=enabled` can be used to use the `cipher-test` method in fastd. - +The flag `-Dmethod_cipher-test=enabled` can be used to use the `cipher-test` method in fastd. After that you can change to the build directory and compile fastd: ```