mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-18 07:12:26 -08:00
In msvc/*Makefile change the names of the CPUs to match the values of /ARCHITECTURE in MSVC
This commit is contained in:
parent
ba76dd88fd
commit
110a15dec8
2 changed files with 3 additions and 3 deletions
|
|
@ -87,10 +87,10 @@ CFLAGS_SSE=/arch:SSE2
|
|||
|
||||
!if "$(ECL_WIN64)" != ""
|
||||
GMP_BITS=64
|
||||
GC_CPU=AMD64
|
||||
GC_CPU=X64
|
||||
!else
|
||||
GMP_BITS=32
|
||||
GC_CPU=X86
|
||||
GC_CPU=i386
|
||||
!endif
|
||||
|
||||
#
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ all: gc.lib
|
|||
$(OBJS) tests\test.obj: $(srcdir)\include\private\gc_priv.h $(srcdir)\include\private\gc_hdrs.h $(srcdir)\include\gc.h $(srcdir)\include\private\gcconfig.h $(srcdir)\include\private\gc_locks.h $(srcdir)\include\private\gc_pmark.h $(srcdir)\include\gc_mark.h $(srcdir)\include\private\msvc_dbg.h
|
||||
|
||||
gc.lib: $(OBJS)
|
||||
!if "$(CPU)" == "X386"
|
||||
!if "$(CPU)" == "i386"
|
||||
lib /MACHINE:i386 /out:gc.lib $(OBJS)
|
||||
!else
|
||||
lib /MACHINE:X64 /out:gc.lib $(OBJS)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue