We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3ffec8 commit d52655dCopy full SHA for d52655d
pymc/__init__.py
@@ -33,7 +33,12 @@ def __set_compiler_flags():
33
import aesara
34
35
current = aesara.config.gcc__cxxflags
36
- aesara.config.gcc__cxxflags = f"{current} -Wno-c++11-narrowing"
+ augmented = f"{current} -Wno-c++11-narrowing"
37
+ # Work around compiler bug in GCC < 8.4 related to structured exception
38
+ # handling registers on Windows.
39
+ # See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65782 for details.
40
+ augmented = f"{augmented} -fno-asynchronous-unwind-tables"
41
+ aesara.config.gcc__cxxflags = augmented
42
43
44
__set_compiler_flags()
0 commit comments