File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -193,10 +193,10 @@ elif cake.system.isLinux():
193193 compiler .addLibrary (' c++abi' )
194194 compiler .addLibrary (' c' )
195195 compiler .addLibrary (' pthread' )
196-
196+
197197 # compiler.addProgramFlag('-Wl,--trace')
198198 # compiler.addProgramFlag('-Wl,-v')
199-
199+
200200 clangVariant .tools [' compiler' ] = compiler
201201
202202 env = clangVariant .tools [" env" ]
@@ -207,12 +207,12 @@ elif cake.system.isLinux():
207207
208208 clangDebugVariant = clangVariant .clone (release = ' debug' )
209209 clangDebugVariant .tools [" env" ][" RELEASE" ] = ' debug'
210-
210+
211211 # Configure debug-specific settings here
212212 compiler = clangDebugVariant .tools [" compiler" ]
213213 compiler .addCppFlag (' -O0' )
214214 compiler .addCppFlag (' -g' )
215-
215+
216216 configuration .addVariant (clangDebugVariant)
217217
218218 clangOptimisedVariant = clangVariant .clone (release = ' optimised' )
@@ -225,5 +225,5 @@ elif cake.system.isLinux():
225225 compiler .addCppFlag (' -flto' )
226226 compiler .addProgramFlag (' -flto' )
227227 compiler .addModuleFlag (' -flto' )
228-
228+
229229 configuration .addVariant (clangOptimisedVariant)
You can’t perform that action at this time.
0 commit comments