Skip to content

Commit

Permalink
try using gcc on travis
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmicexplorer committed Apr 27, 2018
1 parent c7a0fdd commit 1418e08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/python/pants/backend/python/tasks/setup_py.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ class SetupPyInvocationEnvironment(datatype('SetupPyInvocationEnvironment', [

def as_env_dict(self):
return {
'CC': 'clang',
'CXX': 'clang++',
'LDSHARED': 'clang',
'CC': 'gcc',
'CXX': 'g++',
'LDSHARED': 'gcc',
'PATH': self.joined_path,
}

Expand Down

0 comments on commit 1418e08

Please sign in to comment.