@@ -79,15 +79,15 @@ func CompileFiles(ctx *types.Context, sourcePath *paths.Path, recurse bool, buil
7979 ctx .Progress .AddSubSteps (len (sSources ) + len (cSources ) + len (cppSources ))
8080 defer ctx .Progress .RemoveSubSteps ()
8181
82- sObjectFiles , err := compileFilesWithRecipe (ctx , sourcePath , sSources , buildPath , buildProperties , includes , constants . RECIPE_S_PATTERN )
82+ sObjectFiles , err := compileFilesWithRecipe (ctx , sourcePath , sSources , buildPath , buildProperties , includes , "recipe.S.o.pattern" )
8383 if err != nil {
8484 return nil , err
8585 }
86- cObjectFiles , err := compileFilesWithRecipe (ctx , sourcePath , cSources , buildPath , buildProperties , includes , constants . RECIPE_C_PATTERN )
86+ cObjectFiles , err := compileFilesWithRecipe (ctx , sourcePath , cSources , buildPath , buildProperties , includes , "recipe.c.o.pattern" )
8787 if err != nil {
8888 return nil , err
8989 }
90- cppObjectFiles , err := compileFilesWithRecipe (ctx , sourcePath , cppSources , buildPath , buildProperties , includes , constants . RECIPE_CPP_PATTERN )
90+ cppObjectFiles , err := compileFilesWithRecipe (ctx , sourcePath , cppSources , buildPath , buildProperties , includes , "recipe.cpp.o.pattern" )
9191 if err != nil {
9292 return nil , err
9393 }
0 commit comments