-
-
Notifications
You must be signed in to change notification settings - Fork 398
/
Copy pathlibraries_builder.go
234 lines (205 loc) · 7.98 KB
/
libraries_builder.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
// This file is part of arduino-cli.
//
// Copyright 2020 ARDUINO SA (http://www.arduino.cc/)
//
// This software is released under the GNU General Public License version 3,
// which covers the main part of arduino-cli.
// The terms of this license can be found at:
// https://www.gnu.org/licenses/gpl-3.0.en.html
//
// You can be released from the requirements of the above licenses by purchasing
// a commercial license. Buying such a license is mandatory if you want to
// modify or otherwise use the software for commercial activities involving the
// Arduino software without disclosing the source code of your own applications.
// To purchase a commercial license, send an email to [email protected].
package phases
import (
"os"
"path/filepath"
"strings"
"github.com/arduino/arduino-cli/arduino/libraries"
"github.com/arduino/arduino-cli/legacy/builder/builder_utils"
"github.com/arduino/arduino-cli/legacy/builder/constants"
"github.com/arduino/arduino-cli/legacy/builder/i18n"
"github.com/arduino/arduino-cli/legacy/builder/types"
"github.com/arduino/arduino-cli/legacy/builder/utils"
"github.com/arduino/go-paths-helper"
"github.com/arduino/go-properties-orderedmap"
)
var PRECOMPILED_LIBRARIES_VALID_EXTENSIONS_STATIC = map[string]bool{".a": true}
var PRECOMPILED_LIBRARIES_VALID_EXTENSIONS_DYNAMIC = map[string]bool{".so": true}
var FLOAT_ABI_CFLAG = "float-abi"
var FPU_CFLAG = "fpu"
type LibrariesBuilder struct{}
func (s *LibrariesBuilder) Run(ctx *types.Context) error {
librariesBuildPath := ctx.LibrariesBuildPath
buildProperties := ctx.BuildProperties
includes := utils.Map(ctx.IncludeFolders.AsStrings(), utils.WrapWithHyphenI)
libs := ctx.ImportedLibraries
if err := librariesBuildPath.MkdirAll(); err != nil {
return i18n.WrapError(err)
}
objectFiles, err := compileLibraries(ctx, libs, librariesBuildPath, buildProperties, includes)
if err != nil {
return i18n.WrapError(err)
}
ctx.LibrariesObjectFiles = objectFiles
// Search for precompiled libraries
fixLDFLAGforPrecompiledLibraries(ctx, libs)
return nil
}
func findExpectedPrecompiledLibFolder(ctx *types.Context, library *libraries.Library) *paths.Path {
mcu := ctx.BuildProperties.Get(constants.BUILD_PROPERTIES_BUILD_MCU)
// Add fpu specifications if they exist
// To do so, resolve recipe.cpp.o.pattern,
// search for -mfpu=xxx -mfloat-abi=yyy and add to a subfolder
command, _ := builder_utils.PrepareCommandForRecipe(ctx, ctx.BuildProperties, constants.RECIPE_CPP_PATTERN, true)
fpuSpecs := ""
for _, el := range strings.Split(command.String(), " ") {
if strings.Contains(el, FPU_CFLAG) {
toAdd := strings.Split(el, "=")
if len(toAdd) > 1 {
fpuSpecs += strings.TrimSpace(toAdd[1]) + "-"
break
}
}
}
for _, el := range strings.Split(command.String(), " ") {
if strings.Contains(el, FLOAT_ABI_CFLAG) {
toAdd := strings.Split(el, "=")
if len(toAdd) > 1 {
fpuSpecs += strings.TrimSpace(toAdd[1]) + "-"
break
}
}
}
logger := ctx.GetLogger()
if len(fpuSpecs) > 0 {
fpuSpecs = strings.TrimRight(fpuSpecs, "-")
if library.SourceDir.Join(mcu).Join(fpuSpecs).Exist() {
return library.SourceDir.Join(mcu).Join(fpuSpecs)
} else {
// we are unsure, compile from sources
logger.Fprintln(os.Stdout, constants.LOG_LEVEL_INFO,
constants.MSG_PRECOMPILED_LIBRARY_NOT_FOUND_FOR, library.Name, library.SourceDir.Join(mcu).Join(fpuSpecs))
return nil
}
}
if library.SourceDir.Join(mcu).Exist() {
return library.SourceDir.Join(mcu)
}
logger.Fprintln(os.Stdout, constants.LOG_LEVEL_INFO,
constants.MSG_PRECOMPILED_LIBRARY_NOT_FOUND_FOR, library.Name, library.SourceDir.Join(mcu))
return nil
}
func fixLDFLAGforPrecompiledLibraries(ctx *types.Context, libs libraries.List) error {
for _, library := range libs {
if library.Precompiled {
// add library src path to compiler.c.elf.extra_flags
// use library.Name as lib name and srcPath/{mcpu} as location
path := findExpectedPrecompiledLibFolder(ctx, library)
if path == nil {
break
}
// find all library names in the folder and prepend -l
filePaths := []string{}
libs_cmd := library.LDflags + " "
extensions := func(ext string) bool {
return PRECOMPILED_LIBRARIES_VALID_EXTENSIONS_DYNAMIC[ext] || PRECOMPILED_LIBRARIES_VALID_EXTENSIONS_STATIC[ext]
}
utils.FindFilesInFolder(&filePaths, path.String(), extensions, false)
for _, lib := range filePaths {
name := strings.TrimSuffix(filepath.Base(lib), filepath.Ext(lib))
// strip "lib" first occurrence
if strings.HasPrefix(name, "lib") {
name = strings.Replace(name, "lib", "", 1)
libs_cmd += "-l" + name + " "
}
}
currLDFlags := ctx.BuildProperties.Get(constants.BUILD_PROPERTIES_COMPILER_LIBRARIES_LDFLAGS)
ctx.BuildProperties.Set(constants.BUILD_PROPERTIES_COMPILER_LIBRARIES_LDFLAGS, currLDFlags+"\"-L"+path.String()+"\" "+libs_cmd+" ")
}
}
return nil
}
func compileLibraries(ctx *types.Context, libraries libraries.List, buildPath *paths.Path, buildProperties *properties.Map, includes []string) (paths.PathList, error) {
objectFiles := paths.NewPathList()
for _, library := range libraries {
libraryObjectFiles, err := compileLibrary(ctx, library, buildPath, buildProperties, includes)
if err != nil {
return nil, i18n.WrapError(err)
}
objectFiles = append(objectFiles, libraryObjectFiles...)
}
return objectFiles, nil
}
func compileLibrary(ctx *types.Context, library *libraries.Library, buildPath *paths.Path, buildProperties *properties.Map, includes []string) (paths.PathList, error) {
logger := ctx.GetLogger()
if ctx.Verbose {
logger.Println(constants.LOG_LEVEL_INFO, "Compiling library \"{0}\"", library.Name)
}
libraryBuildPath := buildPath.Join(library.Name)
if err := libraryBuildPath.MkdirAll(); err != nil {
return nil, i18n.WrapError(err)
}
objectFiles := paths.NewPathList()
if library.Precompiled {
// search for files with PRECOMPILED_LIBRARIES_VALID_EXTENSIONS
extensions := func(ext string) bool { return PRECOMPILED_LIBRARIES_VALID_EXTENSIONS_STATIC[ext] }
filePaths := []string{}
precompiledPath := findExpectedPrecompiledLibFolder(ctx, library)
if precompiledPath != nil {
// TODO: This codepath is just taken for .a with unusual names that would
// be ignored by -L / -l methods.
// Should we force precompiled libraries to start with "lib" ?
err := utils.FindFilesInFolder(&filePaths, precompiledPath.String(), extensions, false)
if err != nil {
return nil, i18n.WrapError(err)
}
for _, path := range filePaths {
if !strings.HasPrefix(filepath.Base(path), "lib") {
objectFiles.Add(paths.New(path))
}
}
return objectFiles, nil
}
}
if library.Layout == libraries.RecursiveLayout {
if library.AdditionalIncludePaths != nil {
for _, el := range library.AdditionalIncludePaths {
includes = append(includes, utils.WrapWithHyphenI(el.String()))
}
}
libObjectFiles, err := builder_utils.CompileFilesRecursive(ctx, library.SourceDir, libraryBuildPath, buildProperties, includes)
if err != nil {
return nil, i18n.WrapError(err)
}
if library.DotALinkage {
archiveFile, err := builder_utils.ArchiveCompiledFiles(ctx, libraryBuildPath, paths.New(library.Name+".a"), libObjectFiles, buildProperties)
if err != nil {
return nil, i18n.WrapError(err)
}
objectFiles.Add(archiveFile)
} else {
objectFiles.AddAll(libObjectFiles)
}
} else {
if library.UtilityDir != nil {
includes = append(includes, utils.WrapWithHyphenI(library.UtilityDir.String()))
}
libObjectFiles, err := builder_utils.CompileFiles(ctx, library.SourceDir, false, libraryBuildPath, buildProperties, includes)
if err != nil {
return nil, i18n.WrapError(err)
}
objectFiles.AddAll(libObjectFiles)
if library.UtilityDir != nil {
utilityBuildPath := libraryBuildPath.Join("utility")
utilityObjectFiles, err := builder_utils.CompileFiles(ctx, library.UtilityDir, false, utilityBuildPath, buildProperties, includes)
if err != nil {
return nil, i18n.WrapError(err)
}
objectFiles.AddAll(utilityObjectFiles)
}
}
return objectFiles, nil
}