@@ -78,15 +78,15 @@ type Builder struct {
7878 targetPlatform * cores.PlatformRelease
7979 actualPlatform * cores.PlatformRelease
8080
81- buildArtifacts * BuildArtifacts
81+ buildArtifacts * buildArtifacts
8282
8383 buildOptions * buildOptions
8484
8585 libsDetector * detector.SketchLibrariesDetector
8686}
8787
88- // BuildArtifacts contains the result of various build
89- type BuildArtifacts struct {
88+ // buildArtifacts contains the result of various build
89+ type buildArtifacts struct {
9090 // populated by BuildCore
9191 coreArchiveFilePath * paths.Path
9292 coreObjectsFiles paths.PathList
@@ -200,7 +200,7 @@ func NewBuilder(
200200 compilationDatabase : compilation .NewDatabase (buildPath .Join ("compile_commands.json" )),
201201 Progress : progressStats ,
202202 executableSectionsSize : []ExecutableSectionSize {},
203- buildArtifacts : & BuildArtifacts {},
203+ buildArtifacts : & buildArtifacts {},
204204 targetPlatform : targetPlatform ,
205205 actualPlatform : actualPlatform ,
206206 libsDetector : detector .NewSketchLibrariesDetector (
0 commit comments