sasagawa888/eisl

Install eisl on MacOS with error

Closed this issue · 1 comments

if you see the error about ncursersw under MacOS (mine is M2) and if have already do this

brew install ncurses
brew link --force ncurses

then you can edit the makefile and uncomment 3 lines (I do not bother to touch the first 2 lines):

	ifeq  ($(shell uname),Darwin)
		CURSES_CFLAGS := $(shell ncurses5.4-config --cflags)
		CURSES_LIBS := $(shell ncurses5.4-config --libs)
		 NCURSES_PREFIX := $(shell brew --prefix ncurses)
		 CURSES_CFLAGS := $(shell $(NCURSES_PREFIX)/bin/ncurses6-config --cflags)
		 CURSES_LIBS := $(shell $(NCURSES_PREFIX)/bin/ncurses6-config --libs)

Mine compile and work so far so good for English character.

Just to remind myself in another MacOS installation.