-
-
Notifications
You must be signed in to change notification settings - Fork 5.3k
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
Can't build 8.0.1050 and later if system has libvterm installed #2080
Comments
|
It seems header path conflicting. You have /usr/local/include/vterm.h and -I/usr/local/include is prefered that -Ilibvterm/include. So configure should be fixed. |
|
I just do the following: And have this error. This issue with my environment or vim itself? |
|
How about this patch? --- a/src/Makefile
+++ b/src/Makefile
@@ -3299,7 +3299,7 @@ objects/channel.o: channel.c
Makefile:
@echo The name of the makefile MUST be "Makefile" (with capital M)!!!!
-CCCTERM = $(CCC) -Ilibvterm/include -DINLINE="" \
+CCCTERM = $(CCC_NF) -Ilibvterm/include $(ALL_CFLAGS) -DINLINE="" \
-DVSNPRINTF=vim_vsnprintf \
-DIS_COMBINING_FUNCTION=utf_iscomposing_uint \
-DWCWIDTH_FUNCTION=utf_uint2cells |
No No. This is caused by configure script of vim. |
|
Thanks @k-takata! Patch fixes this issue. |
Problem: Build failure if libvterm installed on the system. (Oleh
Hushchenkov)
Solution: Change the CCCTERM argument order. (Ken Takata, closes vim#2080)
After patch 8.0.1050 build fail with installed libvterm in system. Version 8.0.1049 builds fine.
The text was updated successfully, but these errors were encountered: