YouCompleteMe install error for Mojave


This post goes over how to fix YouCompleteMe install error for macOS 10.14 (Mojave).

Problem

I recently updated my YouCompleteMe plugin:

cd ~/.vim/bundle/YouCompleteMe/ && git pull

After reinstalling:

python3 install.py --all

I got the following errors:

Searching Python 3.9 libraries...
Found Python library: /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/lib/python3.9/config-3.9-darwin/libpython3.9.dylib
Found Python headers folder: /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9
-- The C compiler identification is AppleClang 11.0.0.11000033
-- The CXX compiler identification is AppleClang 11.0.0.11000033
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Found Python3: /usr/local/opt/[email protected]/bin/python3.9 (found suitable version "3.9.2", required range is "3.6...3.10") found components: Interpreter Development Development.Module Development.Embed
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
-- Found Threads: TRUE
-- Using libclang archive: /Users/mark/.vim/bundle/YouCompleteMe/third_party/ycmd/cpp/../clang_archives/libclang-11.0.0-x86_64-apple-darwin.tar.bz2
-- Using libclang to provide semantic completion for C/C++/ObjC
-- Using external libclang: /private/var/folders/rk/95025w0x07v17qc1nn_3b2bc0000gn/T/ycm_build_3hn8sks8/lib/libclang.dylib
CMake Error at ycm/CMakeLists.txt:307 (message):
  Unknown compiler - C++17 filesystem library missing


  -- Configuring incomplete, errors occurred!
  See also "/private/var/folders/rk/95025w0x07v17qc1nn_3b2bc0000gn/T/ycm_build_3hn8sks8/CMakeFiles/CMakeOutput.log".
  ERROR: the build failed.

  NOTE: it is *highly* unlikely that this is a bug but rather
  that this is a problem with the configuration of your system
  or a missing dependency. Please carefully read CONTRIBUTING.md
  and if you're sure that it is a bug, please raise an issue on the
  issue tracker, including the entire output of this script
  and the invocation line used to run it.

I searched for the error:

CMake Error at ycm/CMakeLists.txt:307 (message):
  Unknown compiler - C++17 filesystem library missing

And came upon this Gitter thread:

macOS 10.14 doesn’t have <filesystem> enabled.

The point is that you have to avoid ycm-core/ycmd@ece414c in /path/to/YCM/third_party/ycmd. That’s the thing that depends on C++17.

Solution

From the install failure issue, the instructions are to install from a legacy branch:

cd ~/.vim/bundle/YouCompleteMe/ &&
  git fetch &&
  git checkout legacy-c++11 &&
  git submodule update --init --recursive &&
  python3 install.py --all

This fixed it for me.



Please support this site and join our Discord!