diff options
author | gingold | 2012-12-11 02:45:35 +0000 |
---|---|---|
committer | gingold | 2012-12-11 02:45:35 +0000 |
commit | 03cc455ed44229ecd2b925e110f9019c4e6f497b (patch) | |
tree | 55902d1c334f445570ae4dedf0c1847a86f935c4 /translate/grt/Makefile.inc | |
parent | 5ced3fe5ff931c09b99510f992cfa33e72f41492 (diff) | |
download | ghdl-03cc455ed44229ecd2b925e110f9019c4e6f497b.tar.gz ghdl-03cc455ed44229ecd2b925e110f9019c4e6f497b.tar.bz2 ghdl-03cc455ed44229ecd2b925e110f9019c4e6f497b.zip |
Update to gcc 4.7
Use --ghdl-source instead of -c when calling ghdl1
Likewise for --mb-comments / -C
Add x86_64 darwin
Diffstat (limited to 'translate/grt/Makefile.inc')
-rw-r--r-- | translate/grt/Makefile.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/translate/grt/Makefile.inc b/translate/grt/Makefile.inc index 3fc7361..f0bdf61 100644 --- a/translate/grt/Makefile.inc +++ b/translate/grt/Makefile.inc @@ -60,7 +60,11 @@ ifeq ($(filter-out i%86 freebsd%,$(arch) $(osys)),) endif ifeq ($(filter-out i%86 darwin%,$(arch) $(osys)),) GRT_TARGET_OBJS=i386.o linux.o times.o - GRT_EXTRA_LIB=-lm + GRT_EXTRA_LIB= +endif +ifeq ($(filter-out x84_64 darwin%,$(arch) $(osys)),) + GRT_TARGET_OBJS=amd64.o linux.o times.o + GRT_EXTRA_LIB= endif ifeq ($(filter-out sparc solaris%,$(arch) $(osys)),) GRT_TARGET_OBJS=sparc.o linux.o times.o |