From d8cc3eeeb55b92b0d7fe9a325937df11c28fbcaa Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Sun, 12 Jan 2020 17:05:25 +0200 Subject: Update doc/ and move various entries to wiki --- doc/Building/meson.asciidoc | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 doc/Building/meson.asciidoc (limited to 'doc/Building/meson.asciidoc') diff --git a/doc/Building/meson.asciidoc b/doc/Building/meson.asciidoc deleted file mode 100644 index 255e0ad..0000000 --- a/doc/Building/meson.asciidoc +++ /dev/null @@ -1,39 +0,0 @@ -==== Setting compiler -Compiler can only be set when initially configuring the build, and cannot be -changed with --reconfigure: - -[source, sh] ----- -export CXX="ccache clang++" -meson build-path ----- - -==== Setting linker -[source, sh] ----- -build% meson configure -Dcpp_link_args='-fuse_ld=gold' ----- - -==== Listing build options -[source, sh] ----- -build% meson configure ----- - -==== Changing build options -[source, sh] ----- -build% meson configure -D= -# for example: -build% meson configure -DPlasma=enabled ----- - -==== Prevent meson from downloading wraps -During configure, meson can download missing dependencies on its own using -wraps. To disable this, pass '--wrap-mode=nodownload' during the configure -phase: -[source, sh] ----- -repo% meson --wrap-mode=nodownload build-path ----- - -- cgit v1.2.1