summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorFilipe Cabecinhas <me@filcab.net>2015-08-10 18:26:29 +0000
committerFilipe Cabecinhas <me@filcab.net>2015-08-10 18:26:29 +0000
commit030b590627b2dde59ae41f36e1bf1fc88d5a26ba (patch)
tree3f17b5072e0615e10c12ba94f4e283cf593e34dd /cmake
parent0bb31cc9b1423d572161968c0445868fe6e7aa44 (diff)
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@244475 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake')
-rw-r--r--cmake/Modules/AddCompilerRT.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/Modules/AddCompilerRT.cmake b/cmake/Modules/AddCompilerRT.cmake
index 5ea313ba7..3a87def8c 100644
--- a/cmake/Modules/AddCompilerRT.cmake
+++ b/cmake/Modules/AddCompilerRT.cmake
@@ -26,7 +26,7 @@ function(add_compiler_rt_object_libraries name)
set(libnames ${libnames} ${libname})
set(extra_cflags_${libname} ${TARGET_${arch}_CFLAGS})
if(NOT CAN_TARGET_${arch})
- message(FATAL_ERROR "Archtecture ${arch} can't be targeted")
+ message(FATAL_ERROR "Architecture ${arch} can't be targeted")
return()
endif()
endforeach()
@@ -80,7 +80,7 @@ macro(add_compiler_rt_runtime name arch type)
LIBRARY DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR}
RUNTIME DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR})
else()
- message(FATAL_ERROR "Archtecture ${arch} can't be targeted")
+ message(FATAL_ERROR "Architecture ${arch} can't be targeted")
endif()
endmacro()