File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 39
39
40
40
Your compiler should either be in your PATH, or else located where the
41
41
environment variable LLVM_COMPILER_PATH indicates. It can also be used
42
- to indicatethe directory that contains the other LLVM tools such as
42
+ to indicate the directory that contains the other LLVM tools such as
43
43
llvm-link, and llvm-ar.
44
44
45
45
"""
@@ -94,9 +94,9 @@ def checkOS(self):
94
94
def checkSwitch (self ):
95
95
compiler_type = os .getenv ('LLVM_COMPILER' )
96
96
if compiler_type == 'clang' :
97
- return (1 , 'Good , we are using clang.\n ' )
97
+ return (1 , '\n Good , we are using clang.\n ' )
98
98
elif compiler_type == 'dragonegg' :
99
- return (2 , 'OK , we are using dragonegg.\n ' )
99
+ return (2 , '\n OK , we are using dragonegg.\n ' )
100
100
else :
101
101
return (0 , explain_LLVM_COMPILER )
102
102
You can’t perform that action at this time.
0 commit comments