Mercurial > vim
annotate src/Make_cyg.mak @ 33339:441ceb1c45c1 v9.0.1933
patch 9.0.1933: Can change the type of a v: variable using if_lua
Commit: https://github.com/vim/vim/commit/edcba96c0088210927558b0e2583f3b689f457c4
Author: zeertzjq <zeertzjq@outlook.com>
Date: Sun Sep 24 23:13:51 2023 +0200
patch 9.0.1933: Can change the type of a v: variable using if_lua
Problem: Can change the type of a v: variable using if_lua.
Solution: Add additional handling of v: variables like :let.
closes: #13161
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 24 Sep 2023 23:30:03 +0200 |
parents | b0e19f135e50 |
children |
rev | line source |
---|---|
7 | 1 # |
6326 | 2 # Makefile for VIM on Win32, using MinGW cross compiler on Cygwin |
146 | 3 # |
4 # Also read INSTALLpc.txt! | |
7 | 5 # |
6 # This compiles Vim as a Windows application. If you want Vim to run as a | |
7 # Cygwin application use the Makefile (just like on Unix). | |
8 # | |
6326 | 9 # The old Make_cyg.mak (maintained by Dan Sharp et al.) was merged into |
10 # Make_cyg_ming.mak. Note: USEDLL option was removed. | |
11 # This file contains Cygwin specific settings. Common settings are contained | |
12 # in Make_cyg_ming.mak. | |
13 # | |
14 # Last updated by Ken Takata. | |
15 # Last Change: 2014 Oct 21 | |
7 | 16 |
4137 | 17 |
6326 | 18 # uncomment 'PERL' if you want a perl-enabled version |
19 #PERL=/cygdrive/c/perl | |
7 | 20 |
6326 | 21 # uncomment 'LUA' if you want a Lua-enabled version |
22 #LUA=/cygdrive/c/lua | |
7 | 23 |
6326 | 24 # uncomment 'MZSCHEME' if you want a MzScheme-enabled version |
25 #MZSCHEME=/cygdrive/d/plt | |
3959 | 26 |
6326 | 27 # uncomment 'PYTHON' if you want a python-enabled version |
28 #PYTHON=/cygdrive/c/python20 | |
7 | 29 |
6326 | 30 # uncomment 'PYTHON3' if you want a python3-enabled version |
31 #PYTHON3=/cygdrive/c/python31 | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
32 |
6326 | 33 # uncomment 'TCL' if you want a Tcl-enabled version |
34 #TCL=/cygdrive/c/tcl | |
7 | 35 |
6326 | 36 # uncomment 'RUBY' if you want a Ruby-enabled version |
37 #RUBY=/cygdribe/c/ruby | |
6110 | 38 |
7 | 39 |
16198
b0e19f135e50
patch 8.1.1104: MS-Windows: not all environment variables can be used
Bram Moolenaar <Bram@vim.org>
parents:
12525
diff
changeset
|
40 # Use MinGW-w64 cross compiler. |
b0e19f135e50
patch 8.1.1104: MS-Windows: not all environment variables can be used
Bram Moolenaar <Bram@vim.org>
parents:
12525
diff
changeset
|
41 # There are two MinGW-w64 packages in Cygwin: |
b0e19f135e50
patch 8.1.1104: MS-Windows: not all environment variables can be used
Bram Moolenaar <Bram@vim.org>
parents:
12525
diff
changeset
|
42 # 32-bit: mingw64-i686-gcc-g++ |
6326 | 43 # 64-bit: mingw64-x86_64-gcc-g++ |
44 # You may also need to set 'ARCH' in Make_cyg_ming.mak. | |
16198
b0e19f135e50
patch 8.1.1104: MS-Windows: not all environment variables can be used
Bram Moolenaar <Bram@vim.org>
parents:
12525
diff
changeset
|
45 CROSS_COMPILE = i686-w64-mingw32- |
6326 | 46 #CROSS_COMPILE = x86_64-w64-mingw32- |
7 | 47 |
48 | |
6326 | 49 # Do not change this. |
50 UNDER_CYGWIN = yes | |
51 include Make_cyg_ming.mak | |
12525
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
6326
diff
changeset
|
52 |
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
6326
diff
changeset
|
53 # vim: set noet sw=8 ts=8 sts=0 wm=0 tw=0: |