mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
Meta: Tell user which Toolchain ARCH they need to build
There was some understandable confusion about this error now that we have multiple toolchains.
This commit is contained in:
parent
85ea66932e
commit
f00fde46f6
Notes:
sideshowbarker
2024-07-18 07:00:47 +09:00
Author: https://github.com/bgianfo Commit: https://github.com/SerenityOS/serenity/commit/f00fde46f6d Pull-request: https://github.com/SerenityOS/serenity/pull/9390
1 changed files with 1 additions and 1 deletions
|
@ -447,7 +447,7 @@ elseif (USE_CLANG_TOOLCHAIN)
|
|||
include_directories("${TOOLCHAIN_ROOT}/include/c++/v1")
|
||||
else()
|
||||
if (NOT EXISTS ${TOOLCHAIN_ROOT}/${SERENITY_ARCH}-pc-serenity/include/c++/${GCC_VERSION}/)
|
||||
message(FATAL_ERROR "Toolchain version ${GCC_VERSION} appears to be missing! Please run: Meta/serenity.sh rebuild-toolchain")
|
||||
message(FATAL_ERROR "Toolchain version ${GCC_VERSION} (${SERENITY_ARCH}) appears to be missing! Please run: Meta/serenity.sh rebuild-toolchain ${SERENITY_ARCH}")
|
||||
endif()
|
||||
include_directories(${TOOLCHAIN_ROOT}/${SERENITY_ARCH}-pc-serenity/include/c++/${GCC_VERSION}/)
|
||||
include_directories(${TOOLCHAIN_ROOT}/${SERENITY_ARCH}-pc-serenity/include/c++/${GCC_VERSION}/${SERENITY_ARCH}-pc-serenity/)
|
||||
|
|
Loading…
Reference in a new issue