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: ```