diff options
author | gingold | 2007-05-27 14:40:10 +0000 |
---|---|---|
committer | gingold | 2007-05-27 14:40:10 +0000 |
commit | af0fffef2fdf2c86f291bde4a7ba6b22eb8a1519 (patch) | |
tree | c9f8def67a1e549c29819b41b322e7820083ea6e /translate/grt/Makefile.inc | |
parent | 19db894c481e5c3fca89862ef244803c63a54ed7 (diff) | |
download | ghdl-af0fffef2fdf2c86f291bde4a7ba6b22eb8a1519.tar.gz ghdl-af0fffef2fdf2c86f291bde4a7ba6b22eb8a1519.tar.bz2 ghdl-af0fffef2fdf2c86f291bde4a7ba6b22eb8a1519.zip |
cygwin patch added,
parse crash fixed
c++ line comments handled in SDF parser
Diffstat (limited to 'translate/grt/Makefile.inc')
-rw-r--r-- | translate/grt/Makefile.inc | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/translate/grt/Makefile.inc b/translate/grt/Makefile.inc index ec0d4d0..002d177 100644 --- a/translate/grt/Makefile.inc +++ b/translate/grt/Makefile.inc @@ -72,9 +72,10 @@ endif ifeq ($(filter-out i%86 mingw32,$(arch) $(osys)),) GRT_TARGET_OBJS=win32.o clock.o endif -ifeq ($(filter-out i%86 cygwin,$(arch) $(osys)),) - GRT_TARGET_OBJS=win32.o clock.o -endif +# Doesn't work for unknown reasons. +#ifeq ($(filter-out i%86 cygwin,$(arch) $(osys)),) +# GRT_TARGET_OBJS=win32.o clock.o +#endif # Fall-back: use a generic implementation based on pthreads. ifndef GRT_TARGET_OBJS GRT_TARGET_OBJS=pthread.o times.o @@ -142,6 +143,9 @@ linux.o: $(GRTSRCDIR)/config/linux.c win32.o: $(GRTSRCDIR)/config/win32.c $(CC) -c $(GRT_FLAGS) -o $@ $< +win32thr.o: $(GRTSRCDIR)/config/win32thr.c + $(CC) -c $(GRT_FLAGS) -o $@ $< + pthread.o: $(GRTSRCDIR)/config/pthread.c $(CC) -c $(GRT_FLAGS) -o $@ $< |