diff options
author | Eric Fiselier <eric@efcs.ca> | 2017-05-25 22:43:42 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2017-05-25 22:43:42 +0000 |
commit | 5099ddfdf7ecf0221c5b808e0726235e289a40ab (patch) | |
tree | ef96c80082b214e1fe6f1395d8850c0537956329 | |
parent | 8fd2d37b0b0e28154c339f4e61dbf0c31ee31da8 (diff) | |
download | bcm5719-llvm-5099ddfdf7ecf0221c5b808e0726235e289a40ab.tar.gz bcm5719-llvm-5099ddfdf7ecf0221c5b808e0726235e289a40ab.zip |
Correct typo: LIBCXXABI_BUILTINS_LIBRARY -> LIBCXX_BUILTINS_LIBRARY
llvm-svn: 303929
-rw-r--r-- | libcxx/cmake/config-ix.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/cmake/config-ix.cmake b/libcxx/cmake/config-ix.cmake index 6c99c4c03f1..730ee7e164a 100644 --- a/libcxx/cmake/config-ix.cmake +++ b/libcxx/cmake/config-ix.cmake @@ -42,7 +42,7 @@ if (LIBCXX_SUPPORTS_NODEFAULTLIBS_FLAG) # Mingw64 requires quite a few "C" runtime libraries in order for basic # programs to link successfully with -nodefaultlibs. if (LIBCXX_USE_COMPILER_RT) - set(MINGW_RUNTIME ${LIBCXXABI_BUILTINS_LIBRARY}) + set(MINGW_RUNTIME ${LIBCXX_BUILTINS_LIBRARY}) else () set(MINGW_RUNTIME gcc_s gcc) endif() |