File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,8 @@ def get_build_command(self, incremental=False):
108
108
+ ['-sdk' , self ._sdk ,
109
109
'CODE_SIGN_IDENTITY=' ,
110
110
'CODE_SIGNING_REQUIRED=NO' ,
111
- 'ENABLE_BITCODE=NO' ])
111
+ 'ENABLE_BITCODE=NO' ,
112
+ 'GCC_TREAT_WARNINGS_AS_ERRORS=0' ])
112
113
for setting , value in self ._build_settings .iteritems ():
113
114
command += ['%s=%s' % (setting , value )]
114
115
@@ -130,7 +131,8 @@ def get_test_command(self, incremental=False):
130
131
'SWIFT_LIBRARY_PATH=%s' %
131
132
get_stdlib_platform_path (
132
133
self ._build_settings ['SWIFT_EXEC' ],
133
- self ._destination )])
134
+ self ._destination )]
135
+ + ['GCC_TREAT_WARNINGS_AS_ERRORS=0' ])
134
136
for setting , value in self ._build_settings .iteritems ():
135
137
command += ['%s=%s' % (setting , value )]
136
138
You can’t perform that action at this time.
0 commit comments