make/windows/makefiles/sanity.make

Fri, 29 Mar 2019 15:03:32 +0000

author
andrew
date
Fri, 29 Mar 2019 15:03:32 +0000
changeset 9634
d1520f0c3524
parent 9320
8d9ad04d908b
child 9448
73d689add964
permissions
-rw-r--r--

8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
Reviewed-by: erikj, dholmes

duke@435 1 #
dholmes@5417 2 # Copyright (c) 2006, 2013, Oracle and/or its affiliates. All rights reserved.
duke@435 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 #
duke@435 5 # This code is free software; you can redistribute it and/or modify it
duke@435 6 # under the terms of the GNU General Public License version 2 only, as
duke@435 7 # published by the Free Software Foundation.
duke@435 8 #
duke@435 9 # This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 # version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 # accompanied this code).
duke@435 14 #
duke@435 15 # You should have received a copy of the GNU General Public License version
duke@435 16 # 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 #
trims@1907 19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 # or visit www.oracle.com if you need additional information or have any
trims@1907 21 # questions.
duke@435 22 #
duke@435 23 #
duke@435 24
duke@435 25 !include local.make
duke@435 26
duke@435 27 all: checkCL checkLink
duke@435 28
duke@435 29 checkCL:
dholmes@5417 30 @ if "$(MSC_VER)" NEQ "1310" if "$(MSC_VER)" NEQ "1399" if "$(MSC_VER)" NEQ "1400" if "$(MSC_VER)" NEQ "1500" if "$(MSC_VER)" NEQ "1600" if "$(MSC_VER)" NEQ "1700" \
kevinw@9320 31 if "$(MSC_VER)" NEQ "1800" \
kevinw@9320 32 if "$(MSC_VER)" NEQ "1900" \
kevinw@9320 33 if "$(MSC_VER)" NEQ "1912" \
duke@435 34 echo *** WARNING *** unrecognized cl.exe version $(MSC_VER) ($(RAW_MSC_VER)). Use FORCE_MSC_VER to override automatic detection.
duke@435 35
duke@435 36 checkLink:
dholmes@5417 37 @ if "$(LD_VER)" NEQ "710" if "$(LD_VER)" NEQ "800" if "$(LD_VER)" NEQ "900" if "$(LD_VER)" NEQ "1000" if "$(LD_VER)" NEQ "1100" \
kevinw@9320 38 if "$(LD_VER)" NEQ "1200" \
kevinw@9320 39 if "$(LD_VER)" NEQ "1300" \
kevinw@9320 40 if "$(LD_VER)" NEQ "1400" \
kevinw@9320 41 if "$(LD_VER)" NEQ "1412" \
erikj@3518 42 echo *** WARNING *** unrecognized link.exe version $(LD_VER) ($(RAW_LD_VER)). Use FORCE_LD_VER to override automatic detection.

mercurial