view src/msvc2015.bat @ 31408:c82cb53474ee v9.0.1037

patch 9.0.1037: lalloc(0) error for a class without members Commit: https://github.com/vim/vim/commit/98aeb2100c2759111f93f0f0857e93d98afdc88a Author: Bram Moolenaar <Bram@vim.org> Date: Thu Dec 8 22:09:14 2022 +0000 patch 9.0.1037: lalloc(0) error for a class without members Problem: lalloc(0) error for a class without members. Solution: Don't allocate room for members if there aren't any. Don't create the class if there was an error.
author Bram Moolenaar <Bram@vim.org>
date Thu, 08 Dec 2022 23:15:03 +0100
parents fe97616d43d2
children
line wrap: on
line source

@echo off
rem To be used on MS-Windows for Visual C++ 2015 (either Express or Community)
rem See INSTALLpc.txt for information.
rem
rem Usage:
rem   For x86 builds run this without options:
rem     msvc2015
rem   For x64 builds run this with "x86_amd64" option:
rem     msvc2015 x86_amd64
rem   This works on any editions including Express edition.
rem   If you use Community (or Professional) edition, you can also use "x64"
rem   option:
rem     msvc2015 x64

call "%VS140COMNTOOLS%..\..\VC\vcvarsall.bat" %*