From efa0c4e96ce54a13aaca9c64b9bf90b69e17e364 Mon Sep 17 00:00:00 2001 From: silverqx Date: Mon, 26 Aug 2024 20:05:21 +0200 Subject: [PATCH] qmake/docs updated comments [skip ci] --- .env.mingw.example | 2 +- .env.unix.example | 2 +- conf.pri.example | 4 ++-- docs/building/hello-world.mdx | 4 ++-- docs/building/migrations.mdx | 4 ++-- drivers/conf.pri.example | 4 ++-- examples/tom/conf.pri.example | 4 ++-- tests/conf.pri.example | 4 ++-- tests/testdata_tom/conf.pri.example | 4 ++-- 9 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.env.mingw.example b/.env.mingw.example index 6aba53f34..8814af579 100644 --- a/.env.mingw.example +++ b/.env.mingw.example @@ -1,7 +1,7 @@ # Enable ccache wrapper #CONFIG *= ccache -# Use faster linker (for both GCC and Clang) +# Use alternative linker (for both GCC and Clang) # CONFIG *= use_lld_linker does not work on MinGW QMAKE_LFLAGS *= -fuse-ld=lld diff --git a/.env.unix.example b/.env.unix.example index 4960334f2..27e9ca24d 100644 --- a/.env.unix.example +++ b/.env.unix.example @@ -1,7 +1,7 @@ # Enable ccache wrapper and PCH #CONFIG *= ccache precompile_header -# Use faster linker +# Use LLD linker for Clang clang: CONFIG *= use_lld_linker else: CONFIG *= use_gold_linker diff --git a/conf.pri.example b/conf.pri.example index 34cd1fdba..a7fee2c2d 100644 --- a/conf.pri.example +++ b/conf.pri.example @@ -103,7 +103,7 @@ win32-g++|win32-clang-g++ { # Enable ccache wrapper # CONFIG *= ccache - # Use faster linker (for both GCC and Clang) + # Use alternative linker (for both GCC and Clang) # CONFIG *= use_lld_linker does not work on MinGW QMAKE_LFLAGS *= -fuse-ld=lld @@ -184,7 +184,7 @@ else:win32-msvc|win32-clang-msvc { # Unix else:unix { - # Use faster linker + # Use LLD linker for Clang clang: CONFIG *= use_lld_linker else: CONFIG *= use_gold_linker diff --git a/docs/building/hello-world.mdx b/docs/building/hello-world.mdx index 0531cd89e..cbc9d3b63 100644 --- a/docs/building/hello-world.mdx +++ b/docs/building/hello-world.mdx @@ -581,7 +581,7 @@ TINYORM_BUILD_TREE = $$quote($$TINY_MAIN_DIR/TinyORM-builds-qmake/build-TinyORM- TINY_VCPKG_ROOT = $$clean_path($$PWD/../../../vcpkg/) TINY_VCPKG_TRIPLET = x64-linux -# Use faster linker +# Use LLD linker for Clang clang: CONFIG *= use_lld_linker else: CONFIG *= use_gold_linker @@ -607,7 +607,7 @@ TINY_VCPKG_TRIPLET = x64-mingw-dynamic # Enable ccache wrapper #CONFIG *= ccache -# Use faster linker (for both GCC and Clang) +# Use alternative linker (for both GCC and Clang) # CONFIG *= use_lld_linker does not work on MinGW QMAKE_LFLAGS *= -fuse-ld=lld ``` diff --git a/docs/building/migrations.mdx b/docs/building/migrations.mdx index 809b69287..40306cb19 100644 --- a/docs/building/migrations.mdx +++ b/docs/building/migrations.mdx @@ -721,7 +721,7 @@ TINYORM_BUILD_TREE = $$quote($$TINY_MAIN_DIR/TinyORM-builds-qmake/build-TinyORM- TINY_VCPKG_ROOT = $$clean_path($$PWD/../../../vcpkg/) TINY_VCPKG_TRIPLET = x64-linux -# Use faster linker +# Use LLD linker for Clang clang: CONFIG *= use_lld_linker else: CONFIG *= use_gold_linker @@ -747,7 +747,7 @@ TINY_VCPKG_TRIPLET = x64-mingw-dynamic # Enable ccache wrapper #CONFIG *= ccache -# Use faster linker (for both GCC and Clang) +# Use alternative linker (for both GCC and Clang) # CONFIG *= use_lld_linker does not work on MinGW QMAKE_LFLAGS *= -fuse-ld=lld ``` diff --git a/drivers/conf.pri.example b/drivers/conf.pri.example index d4b0421d2..333c79a39 100644 --- a/drivers/conf.pri.example +++ b/drivers/conf.pri.example @@ -11,7 +11,7 @@ win32-g++|win32-clang-g++ { # Enable ccache wrapper # CONFIG *= ccache - # Use faster linker (for both GCC and Clang) + # Use alternative linker (for both GCC and Clang) # CONFIG *= use_lld_linker does not work on MinGW QMAKE_LFLAGS *= -fuse-ld=lld @@ -88,7 +88,7 @@ else:win32-msvc|win32-clang-msvc { # Unix else:unix { - # Use faster linker + # Use LLD linker for Clang clang: CONFIG *= use_lld_linker else: CONFIG *= use_gold_linker diff --git a/examples/tom/conf.pri.example b/examples/tom/conf.pri.example index b140b167e..d9ce3179f 100644 --- a/examples/tom/conf.pri.example +++ b/examples/tom/conf.pri.example @@ -24,7 +24,7 @@ win32-g++|win32-clang-g++ { # Enable ccache wrapper # CONFIG *= ccache - # Use faster linker (for both GCC and Clang) + # Use alternative linker (for both GCC and Clang) # CONFIG *= use_lld_linker does not work on MinGW QMAKE_LFLAGS *= -fuse-ld=lld @@ -56,7 +56,7 @@ else:win32-msvc|win32-clang-msvc { # Unix else:unix { - # Use faster linker + # Use LLD linker for Clang clang: CONFIG *= use_lld_linker else: CONFIG *= use_gold_linker diff --git a/tests/conf.pri.example b/tests/conf.pri.example index c8e4d67c1..db2d8ae45 100644 --- a/tests/conf.pri.example +++ b/tests/conf.pri.example @@ -11,7 +11,7 @@ win32-g++|win32-clang-g++ { # Enable ccache wrapper # CONFIG *= ccache - # Use faster linker (for both GCC and Clang) + # Use alternative linker (for both GCC and Clang) # CONFIG *= use_lld_linker does not work on MinGW QMAKE_LFLAGS *= -fuse-ld=lld @@ -43,7 +43,7 @@ else:win32-msvc|win32-clang-msvc { # Unix else:unix { - # Use faster linker + # Use LLD linker for Clang clang: CONFIG *= use_lld_linker else: CONFIG *= use_gold_linker diff --git a/tests/testdata_tom/conf.pri.example b/tests/testdata_tom/conf.pri.example index c8e4d67c1..db2d8ae45 100644 --- a/tests/testdata_tom/conf.pri.example +++ b/tests/testdata_tom/conf.pri.example @@ -11,7 +11,7 @@ win32-g++|win32-clang-g++ { # Enable ccache wrapper # CONFIG *= ccache - # Use faster linker (for both GCC and Clang) + # Use alternative linker (for both GCC and Clang) # CONFIG *= use_lld_linker does not work on MinGW QMAKE_LFLAGS *= -fuse-ld=lld @@ -43,7 +43,7 @@ else:win32-msvc|win32-clang-msvc { # Unix else:unix { - # Use faster linker + # Use LLD linker for Clang clang: CONFIG *= use_lld_linker else: CONFIG *= use_gold_linker