Mercurial > vim
annotate runtime/compiler/tcl.vim @ 30849:fe54ba93f830 v9.0.0759
patch 9.0.0759: huge build on macos does not use Perl
Commit: https://github.com/vim/vim/commit/fa7bb1d937308a60280e070b01baba5342148ff7
Author: Philip H <47042125+pheiduck@users.noreply.github.com>
Date: Sat Oct 15 14:17:37 2022 +0100
patch 9.0.0759: huge build on macos does not use Perl
Problem: Huge build on macos does not use Perl.
Solution: Re-enable the Perl interface using "dynamic". (closes https://github.com/vim/vim/issues/11375)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 15 Oct 2022 15:30:03 +0200 |
parents | f7add3891e95 |
children | e1df51f68736 |
rev | line source |
---|---|
7 | 1 " Vim compiler file |
2 " Compiler: tcl | |
5161
f7add3891e95
Updated runtime files. Fix NL translations.
Bram Moolenaar <bram@vim.org>
parents:
36
diff
changeset
|
3 " Maintainer: Doug Kearns <dougkearns@gmail.com> |
36 | 4 " Last Change: 2004 Nov 27 |
7 | 5 |
6 if exists("current_compiler") | |
7 finish | |
8 endif | |
9 let current_compiler = "tcl" | |
10 | |
11 if exists(":CompilerSet") != 2 " older Vim always used :setlocal | |
12 command -nargs=* CompilerSet setlocal <args> | |
13 endif | |
14 | |
15 CompilerSet makeprg=tcl | |
16 | |
17 CompilerSet errorformat=%EError:\ %m,%+Z\ %\\{4}(file\ \"%f\"\ line\ %l),%-G%.%# |