-
-
Notifications
You must be signed in to change notification settings - Fork 47
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
make option under installation doesn't work for m1 without alteration #79
Comments
|
Same here, though one note I'll add that may be relevant: I had originally set up my M1's vim setup under Rosetta (work tooling compatibility reasons). However, recently, I have been able to drop Rosetta altogether. Once Rosetta was dropped, nvim would load with errors complaining that telescope-fzf-native.nvim hadn't been built for arm64e. I had to remove my build directory for telescope-fzf-native.nvim and then re-run Not sure if this is relevant in OP's or others' situations, but felt worth sharing |
You could try if you had more luck with the cmake builder. Also maybe we want to integrate this: #23 (comment) the person who mentioned a fork said that adding PR welcome :) |
A quick alternative solution that worked for me on M1 is using
|
|
Alternative solution, without gmake: maybe we should add docs in the readme to help users on apple SoC |
following
use {'nvim-telescope/telescope-fzf-native.nvim', run = 'make' }
didn't work on m1.
modifying it to
use {'nvim-telescope/telescope-fzf-native.nvim', run = ' arch -arm64 make' }
worked.
just wanted to share, maybe adding a small note in documentation for people running into the same situation.
The text was updated successfully, but these errors were encountered: