diff options
author | Tristan Gingold | 2014-02-01 04:32:51 +0100 |
---|---|---|
committer | Tristan Gingold | 2014-02-01 04:32:51 +0100 |
commit | 65f7250d7f0ddbf916758acd1a91d313e57ca0f1 (patch) | |
tree | 5d044fdfb383b17e4bfa14136ef9d5f606cf70ce /translate/ghdldrv/Makefile | |
parent | a60ee6981330604152d73f023140c1d30a0c52e1 (diff) | |
download | ghdl-65f7250d7f0ddbf916758acd1a91d313e57ca0f1.tar.gz ghdl-65f7250d7f0ddbf916758acd1a91d313e57ca0f1.tar.bz2 ghdl-65f7250d7f0ddbf916758acd1a91d313e57ca0f1.zip |
Windows: fix library update, handle errors during elaboration.
Diffstat (limited to 'translate/ghdldrv/Makefile')
-rw-r--r-- | translate/ghdldrv/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/translate/ghdldrv/Makefile b/translate/ghdldrv/Makefile index 51592ae..af2e82d 100644 --- a/translate/ghdldrv/Makefile +++ b/translate/ghdldrv/Makefile @@ -43,6 +43,7 @@ target=i686-pc-linux-gnu #target=x86_64-pc-linux-gnu #target=i686-apple-darwin #target=x86_64-apple-darwin +#target=i386-pc-mingw32 GRTSRCDIR=../grt include $(GRTSRCDIR)/Makefile.inc @@ -52,6 +53,9 @@ endif ifeq ($(filter-out i%86 darwin%,$(arch) $(osys)),) ORTHO_X86_FLAGS=Flags_Macosx endif +ifeq ($(filter-out i%86 mingw32%,$(arch) $(osys)),) + ORTHO_X86_FLAGS=Flags_Windows +endif ifdef ORTHO_X86_FLAGS ORTHO_DEPS=ortho_code-x86-flags.ads endif |