Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions robotpy_build/command/build_ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,9 @@ def build_extensions(self):
# Enable standards-compliant preprocessor
if has_flag(self.compiler, "/Zc:preprocessor"):
opts.append("/Zc:preprocessor")
# Enable utf-8 source files.. this probably shouldn't be set globally
if has_flag(self.compiler, "/utf-8"):
opts.append("/utf-8")
if cc_launcher:
# yes, this is terrible. There's really no other way with distutils
def _spawn(cmd):
Expand Down
Loading