diff options
Diffstat (limited to 'eclass/toolchain-funcs.eclass')
-rw-r--r-- | eclass/toolchain-funcs.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass index 478177de141e..2911ed66e63c 100644 --- a/eclass/toolchain-funcs.eclass +++ b/eclass/toolchain-funcs.eclass @@ -672,7 +672,7 @@ tc-check-openmp() { if tc-is-gcc; then eerror "Enable OpenMP support by building sys-devel/gcc with USE=\"openmp\"." elif tc-is-clang; then - eerror "OpenMP support in sys-devel/clang is provided by sys-libs/libomp." + eerror "OpenMP support in llvm-core/clang is provided by llvm-runtimes/openmp." fi die "Active compiler does not have required support for OpenMP" @@ -1242,7 +1242,7 @@ gen_usr_ldscript() { # If the library is identified, the function returns 0 and prints one # of the following: # -# - ``libc++`` for ``sys-libs/libcxx`` +# - ``libc++`` for ``llvm-runtimes/libcxx`` # - ``libstdc++`` for ``sys-devel/gcc``'s libstdc++ # # If the library is not recognized, the function returns 1. @@ -1278,7 +1278,7 @@ tc-get-cxx-stdlib() { # If the runtime is identifed, the function returns 0 and prints one # of the following: # -# - ``compiler-rt`` for ``sys-libs/compiler-rt`` +# - ``compiler-rt`` for ``llvm-runtimes/compiler-rt`` # - ``libgcc`` for ``sys-devel/gcc``'s libgcc # # If the runtime is not recognized, the function returns 1. |