Mercurial > vim
annotate src/msvc2019.bat @ 33933:aceaf677dd92 v9.0.2163
patch 9.0.2163: Vim9: type can be assigned to list/dict
Commit: https://github.com/vim/vim/commit/fa831102c38c9192edf3aaf0cbcaff9ee5e006ac
Author: Ernie Rael <errael@raelity.com>
Date: Thu Dec 14 20:06:39 2023 +0100
patch 9.0.2163: Vim9: type can be assigned to list/dict
Problem: Vim9: type can be assigned to list/dict
Solution: Prevent assigning a `type` to a `list` or `dict`
closes: #13683
Signed-off-by: Ernie Rael <errael@raelity.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 14 Dec 2023 20:15:08 +0100 |
parents | 54dda39c5bb3 |
children |
rev | line source |
---|---|
30385
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 @echo off |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 rem To be used on MS-Windows for Visual C++ 2019. |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3 rem See INSTALLpc.txt for information. |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
4 rem |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
5 rem Usage: |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
6 rem For x86 builds run this with "x86" option: |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
7 rem msvc2019 x86 |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
8 rem For x64 builds run this with "x64" option: |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
9 rem msvc2019 x64 |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
10 |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
11 set "VSVEROPT=-version [16.0^,17.0^)" |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
12 call "%~dp0msvc-latest.bat" %* |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
13 set VSVEROPT= |