Skip to content
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

Parameterise LuaJIT path on OSX #824

Merged
merged 2 commits into from
Mar 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,10 @@ nvim: | ${NVIM_PATH}

OS:=$(shell uname)
LUAJIT:=$(shell nvim -v | grep -o LuaJIT)
LUAJIT_OSX_PATH?=/opt/homebrew/opt/luajit
ifeq ($(LUAJIT),LuaJIT)
ifeq ($(OS),Darwin)
LUA_LDLIBS=-lluajit-5.1.2 -L/opt/homebrew/opt/luajit/lib/
LUA_LDLIBS=-lluajit-5.1.2 -L${LUAJIT_OSX_PATH}/lib/
else
LUA_LDLIBS=-lluajit-5.1
endif
Expand Down
2 changes: 1 addition & 1 deletion doc/luasnip.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*luasnip.txt* For NVIM v0.8.0 Last change: 2023 March 11
*luasnip.txt* For NVIM v0.8.0 Last change: 2023 March 13

==============================================================================
Table of Contents *luasnip-table-of-contents*
Expand Down