We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf2c751 commit 29b9dc3Copy full SHA for 29b9dc3
robotpy_build/command/build_ext.py
@@ -116,6 +116,9 @@ def build_extensions(self):
116
# Enable standards-compliant preprocessor
117
if has_flag(self.compiler, "/Zc:preprocessor"):
118
opts.append("/Zc:preprocessor")
119
+ # Enable utf-8 source files.. this probably shouldn't be set globally
120
+ if has_flag(self.compiler, "/utf-8"):
121
+ opts.append("/utf-8")
122
if cc_launcher:
123
# yes, this is terrible. There's really no other way with distutils
124
def _spawn(cmd):
0 commit comments