@@ -261,7 +261,7 @@ func (b *Builder) preprocess() error {
261
261
b .Progress .CompleteStep ()
262
262
b .Progress .PushProgress ()
263
263
264
- if err := b .PrepareSketchBuildPath (); err != nil {
264
+ if err := b .prepareSketchBuildPath (); err != nil {
265
265
return err
266
266
}
267
267
b .Progress .CompleteStep ()
@@ -284,12 +284,12 @@ func (b *Builder) preprocess() error {
284
284
b .Progress .CompleteStep ()
285
285
b .Progress .PushProgress ()
286
286
287
- b .WarnAboutArchIncompatibleLibraries (b .SketchLibrariesDetector .ImportedLibraries ())
287
+ b .warnAboutArchIncompatibleLibraries (b .SketchLibrariesDetector .ImportedLibraries ())
288
288
b .Progress .CompleteStep ()
289
289
b .Progress .PushProgress ()
290
290
291
291
b .logIfVerbose (false , tr ("Generating function prototypes..." ))
292
- if err := b .PreprocessSketch (b .SketchLibrariesDetector .IncludeFolders ()); err != nil {
292
+ if err := b .preprocessSketch (b .SketchLibrariesDetector .IncludeFolders ()); err != nil {
293
293
return err
294
294
}
295
295
b .Progress .CompleteStep ()
@@ -331,20 +331,20 @@ func (b *Builder) Build() error {
331
331
b .Progress .CompleteStep ()
332
332
b .Progress .PushProgress ()
333
333
334
- b .PrintUsedLibraries (b .SketchLibrariesDetector .ImportedLibraries ())
334
+ b .printUsedLibraries (b .SketchLibrariesDetector .ImportedLibraries ())
335
335
b .Progress .CompleteStep ()
336
336
b .Progress .PushProgress ()
337
337
338
338
if buildErr != nil {
339
339
return buildErr
340
340
}
341
- if err := b .ExportProjectCMake (b .SketchLibrariesDetector .ImportedLibraries (), b .SketchLibrariesDetector .IncludeFolders ()); err != nil {
341
+ if err := b .exportProjectCMake (b .SketchLibrariesDetector .ImportedLibraries (), b .SketchLibrariesDetector .IncludeFolders ()); err != nil {
342
342
return err
343
343
}
344
344
b .Progress .CompleteStep ()
345
345
b .Progress .PushProgress ()
346
346
347
- if err := b .Size (); err != nil {
347
+ if err := b .size (); err != nil {
348
348
return err
349
349
}
350
350
b .Progress .CompleteStep ()
@@ -381,13 +381,13 @@ func (b *Builder) build() error {
381
381
b .Progress .CompleteStep ()
382
382
b .Progress .PushProgress ()
383
383
384
- if err := b .RemoveUnusedCompiledLibraries (b .SketchLibrariesDetector .ImportedLibraries ()); err != nil {
384
+ if err := b .removeUnusedCompiledLibraries (b .SketchLibrariesDetector .ImportedLibraries ()); err != nil {
385
385
return err
386
386
}
387
387
b .Progress .CompleteStep ()
388
388
b .Progress .PushProgress ()
389
389
390
- if err := b .BuildLibraries (b .SketchLibrariesDetector .IncludeFolders (), b .SketchLibrariesDetector .ImportedLibraries ()); err != nil {
390
+ if err := b .buildLibraries (b .SketchLibrariesDetector .IncludeFolders (), b .SketchLibrariesDetector .ImportedLibraries ()); err != nil {
391
391
return err
392
392
}
393
393
b .Progress .CompleteStep ()
@@ -406,7 +406,7 @@ func (b *Builder) build() error {
406
406
b .Progress .CompleteStep ()
407
407
b .Progress .PushProgress ()
408
408
409
- if err := b .BuildCore (); err != nil {
409
+ if err := b .buildCore (); err != nil {
410
410
return err
411
411
}
412
412
b .Progress .CompleteStep ()
@@ -425,7 +425,7 @@ func (b *Builder) build() error {
425
425
b .Progress .CompleteStep ()
426
426
b .Progress .PushProgress ()
427
427
428
- if err := b .Link (); err != nil {
428
+ if err := b .link (); err != nil {
429
429
return err
430
430
}
431
431
b .Progress .CompleteStep ()
0 commit comments