summaryrefslogtreecommitdiffstats
path: root/src/INSTALLpc.txt
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2022-06-15 18:31:45 +0100
committerBram Moolenaar <Bram@vim.org>2022-06-15 18:31:45 +0100
commitcf65d88ff844f042337dfd043e6e98f3b9270577 (patch)
tree762f0ea9819548fb8814006cd307b3ec29a51d48 /src/INSTALLpc.txt
parentdad5d2f87b867dab48ac265e3d978d86f0541493 (diff)
patch 8.2.5101: MS-Windows with MinGW: $CC may be "cc" instead of "gcc"v8.2.5101
Problem: MS-Windows with MinGW: $CC may be "cc" instead of "gcc". Solution: Set $CC if it is not matching "clang". (Yegappan Lakshmanan, closes #10578)
Diffstat (limited to 'src/INSTALLpc.txt')
-rw-r--r--src/INSTALLpc.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/INSTALLpc.txt b/src/INSTALLpc.txt
index 1c50dd183c..43d024a4a3 100644
--- a/src/INSTALLpc.txt
+++ b/src/INSTALLpc.txt
@@ -296,9 +296,10 @@ Go to the source directory of Vim, then execute the make command. E.g.:
CC=clang
CXX=clang++
- make -f Make_ming.mak
+ # To build Vim without the GUI support
make -f Make_ming.mak GUI=no
- make -f Make_ming.mak GUI=yes
+ # To build Vim with the GUI support
+ make -f Make_ming.mak GUI=yes XPM=no
To build Vim with the address sanitizer (ASAN), execute the following command: