You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I read your issue title correctly, you are assuming that the build failure is the result of HOME pointing to the nonexistent directory /Users/josh/Documents/code/knotkit/.
However, the actual error line is /usr/bin/ld: cannot find -lc++, that is, libc++ is not installed on your machine. Most likely, this means that you are building on a Linux system (where the C++ standard library is traditionally libstdc++, not libc++) which does not provide that library.
You might be able to fix this by changing --stdlib=libc++ to --stdlib=libstdc++ in the Makefile, or by installing libc++ (e.g. via sudo apt-get install libc++-dev on Ubuntu).
The text was updated successfully, but these errors were encountered: