mirror of
https://github.com/mamedev/mame.git
synced 2024-11-18 10:06:19 +01:00
fix windows build till clang detection is fixed (nw)
This commit is contained in:
parent
f5371ffa1b
commit
8d7ae45c3f
1 changed files with 2 additions and 2 deletions
4
makefile
4
makefile
|
@ -730,8 +730,8 @@ SRC = src
|
|||
3RDPARTY = 3rdparty
|
||||
|
||||
ifeq ($(OS),windows)
|
||||
GCC_VERSION := $(shell gcc -dumpversion 2> NUL)
|
||||
CLANG_VERSION := $(shell %CLANG%\bin\clang --version 2> NUL| head -n 1 | sed "s/[^0-9,.]//g")
|
||||
GCC_VERSION := $(shell $(subst @,,$(CC)) -dumpversion 2> NUL)
|
||||
CLANG_VERSION :=
|
||||
PYTHON_AVAILABLE := $(shell $(PYTHON) --version > NUL 2>&1 && echo python)
|
||||
CHECK_CLANG :=
|
||||
ifdef MSBUILD
|
||||
|
|
Loading…
Reference in a new issue