diff options
author | umarcor <unai.martinezcorral@ehu.eus> | 2020-10-23 04:58:31 +0200 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2020-10-24 20:33:13 +0200 |
commit | 37fcfe0c837da0357597f97144ab808b78eab425 (patch) | |
tree | 6d265ff10c9cb0cc186a93e3908e209b58254b0c /src/grt | |
parent | d7a52814daf48d529f85639dbee25f2191344d6e (diff) | |
download | ghdl-37fcfe0c837da0357597f97144ab808b78eab425.tar.gz ghdl-37fcfe0c837da0357597f97144ab808b78eab425.tar.bz2 ghdl-37fcfe0c837da0357597f97144ab808b78eab425.zip |
src/grt/Makefile.inc: support clang -dumpmachine on Windows
Diffstat (limited to 'src/grt')
-rw-r--r-- | src/grt/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/grt/Makefile.inc b/src/grt/Makefile.inc index fc87a8859..bc8c00f11 100644 --- a/src/grt/Makefile.inc +++ b/src/grt/Makefile.inc @@ -57,7 +57,7 @@ GRT_ELF_EXEC_OPTS:=-Wl,--version-script=@/grt.ver -Wl,--export-dynamic # functions) so that a vpi object file can refer them. # GRT_SHARED_OPTS: platform specific options to be added during link of # -shared simulation binaries. Used instead of GET_EXEC_OPTS -ifeq ($(filter-out mingw32 mingw64,$(osys)),) +ifeq ($(filter-out mingw32 mingw64 windows,$(osys)),) # For windows. GRT_TARGET_OBJS=win32.o clock.o GRT_EXTRA_LIB=-ldbghelp |