diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-02-11 16:21:35 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-02-11 16:21:35 (GMT) |
commit | 21db6889635b43cef6b659b974ec0883a551d4e1 (patch) | |
tree | 3de871a44bb6c48e7bc8d59111b94d4aee7cd5a8 /win | |
parent | 85cb8c27f27b0f3dab72ab181ba1bed5400e13e5 (diff) | |
download | tcl-21db6889635b43cef6b659b974ec0883a551d4e1.zip tcl-21db6889635b43cef6b659b974ec0883a551d4e1.tar.gz tcl-21db6889635b43cef6b659b974ec0883a551d4e1.tar.bz2 |
more tweaks for windows-arm64
Diffstat (limited to 'win')
-rw-r--r-- | win/rules.vc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/rules.vc b/win/rules.vc index 4f103d0..b68b6b4 100644 --- a/win/rules.vc +++ b/win/rules.vc @@ -1384,7 +1384,7 @@ OPTDEFINES = $(OPTDEFINES) /DUSE_THREAD_ALLOC=1 OPTDEFINES = $(OPTDEFINES) /DSTATIC_BUILD
!elseif $(TCL_VERSION) > 86
OPTDEFINES = $(OPTDEFINES) /DTCL_WITH_EXTERNAL_TOMMATH
-!if "$(MACHINE)" == "AMD64"
+!if "$(MACHINE)" == "AMD64" || "$(MACHINE)" == "ARM64"
OPTDEFINES = $(OPTDEFINES) /DMP_64BIT
!endif
!endif
@@ -1412,7 +1412,7 @@ OPTDEFINES = $(OPTDEFINES) /DTCL_CFG_OPTIMIZED !if $(PROFILE)
OPTDEFINES = $(OPTDEFINES) /DTCL_CFG_PROFILED
!endif
-!if "$(MACHINE)" == "AMD64"
+!if "$(MACHINE)" == "AMD64" || "$(MACHINE)" == "ARM64"
OPTDEFINES = $(OPTDEFINES) /DTCL_CFG_DO64BIT
!endif
!if $(VCVERSION) < 1300
@@ -1474,7 +1474,7 @@ cdebug = $(cdebug) -Zi # cwarn includes default warning levels.
cwarn = $(WARNINGS)
-!if "$(MACHINE)" == "AMD64"
+!if "$(MACHINE)" == "AMD64" || "$(MACHINE)" == "ARM64"
# Disable pointer<->int warnings related to cast between different sizes
# There are a gadzillion of these due to use of ClientData and
# clutter up compiler
|