-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compile command does not work on OS X #6
Comments
scratch that, it still doesn't compile properly. still troubleshooting... |
It seems like this was the original issue, since the mac os system /usr/bin/ld doesn't support start-group and end-group but I was able to seemingly get it to use the homebrew version of lld with this:
but it still fails:
running the clang++ command manually in verbose mode reveals it is using homebrew llvm for linking:
this is the version of ld:
so, I am out of ideas :D I might try again later today |
The standard compile command that was provided in the readme attempts to use the built in OS X version of clangd, which fails:
In order to use the homebrew installed version, I had to use the following command:
And then it compiled properly
The text was updated successfully, but these errors were encountered: