We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The removal of the double "/" in #89 broke the build using make outside of MSYS2 terminal.
This works for me inside MSYS2 and in PS/CMD
CFLAGS += -Wall -Werror -fpic -std=gnu99 ifeq ($(OS),Windows_NT) CC = gcc TARGET := libfzf.dll ifeq (,$(findstring MSYS,$(MSYSTEM))) # On Windows, but NOT msys MKD = cmd //C mkdir RM = cmd //C rmdir //Q //S else MKD = mkdir -p RM = rm -rf endif else MKD = mkdir -p RM = rm -rf TARGET := libfzf.so endif
The text was updated successfully, but these errors were encountered:
@m420p when building it, it ouputs something similar to my issue?
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The removal of the double "/" in #89 broke the build using make outside of MSYS2 terminal.
This works for me inside MSYS2 and in PS/CMD
The text was updated successfully, but these errors were encountered: