Skip to content

Commit

Permalink
qmake/docs updated comments
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
silverqx committed Aug 26, 2024
1 parent 14f18fc commit efa0c4e
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .env.mingw.example
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion .env.unix.example
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions conf.pri.example
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions docs/building/hello-world.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
```
Expand Down
4 changes: 2 additions & 2 deletions docs/building/migrations.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
```
Expand Down
4 changes: 2 additions & 2 deletions drivers/conf.pri.example
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions examples/tom/conf.pri.example
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions tests/conf.pri.example
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions tests/testdata_tom/conf.pri.example
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down

0 comments on commit efa0c4e

Please sign in to comment.