We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2ee9bc commit 488da08Copy full SHA for 488da08
astc_encoder/__init__.py
@@ -6,7 +6,7 @@
6
The exception is aarch64, which uses the neon encoder by default.
7
"""
8
9
-__version__ = "0.1.10"
+__version__ = "0.1.11"
10
11
from .enum import (
12
ASTCConfigFlags as ASTCConfigFlags,
setup.py
@@ -124,6 +124,8 @@ def build_extensions(self):
124
"/EHsc",
125
"/W4",
126
"/fp:precise",
127
+ # msvc runtime version incompatibility fix
128
+ "/D_DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR",
129
]
130
# not in the astc-encoder CMakeLists.txt
131
# even tho it should improve performance
0 commit comments