We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69a8792 commit fdba7b4Copy full SHA for fdba7b4
1 file changed
setup.py
@@ -137,6 +137,15 @@ def build_extension(self, ext):
137
if "--no_ext" in sys.argv:
138
sys.argv = [x for x in sys.argv if x != "--no_ext"]
139
features = {}
140
+elif sys.byteorder == "big":
141
+ print """
142
+***************************************************
143
+The optional C extension is currently not supported
144
+on big endian platforms and will not be built.
145
+Performance may be degraded.
146
147
+"""
148
+ features = {}
149
else:
150
features = {"c-ext": c_ext}
151
0 commit comments