diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-01-26 11:38:56 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-01-26 11:42:07 +0100 |
commit | 0a56bd33308d2c4ae45f261498d69cb44fbd13c8 (patch) | |
tree | 457aea638c1ece516ab9350596f9aee97d196b53 | |
parent | 83880cced34c1425cf225c435c7ed05eac6fd44c (diff) | |
download | rneovim-0a56bd33308d2c4ae45f261498d69cb44fbd13c8.tar.gz rneovim-0a56bd33308d2c4ae45f261498d69cb44fbd13c8.tar.bz2 rneovim-0a56bd33308d2c4ae45f261498d69cb44fbd13c8.zip |
build/macOS: remove -iframework line #7891
Linker error:
[1/3] Linking C executable bin/nvim
ld: warning: directory not found for option '-FCoreFoundation'
Only the -isysroot change is needed, see
https://github.com/neovim/neovim/pull/7891#discussion_r164036958
-rw-r--r-- | src/nvim/CMakeLists.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt index b14f93f90a..0e174c3c61 100644 --- a/src/nvim/CMakeLists.txt +++ b/src/nvim/CMakeLists.txt @@ -14,7 +14,6 @@ if(WIN32) # tell MinGW compiler to enable wmain set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -municode") elseif(CMAKE_SYSTEM_NAME STREQUAL "Darwin") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -iframework CoreFoundation") set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -framework CoreFoundation") set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -framework CoreFoundation") endif() |