Skip to content

Commit a2b9d4f

Browse files
committed
Add support for additional_include_paths library property
Fixes arduino#501
1 parent da8fc05 commit a2b9d4f

File tree

4 files changed

+29
-14
lines changed

4 files changed

+29
-14
lines changed

arduino/libraries/libraries.go

+15-14
Original file line numberDiff line numberDiff line change
@@ -59,20 +59,21 @@ type Library struct {
5959

6060
Types []string `json:"types,omitempty"`
6161

62-
InstallDir *paths.Path
63-
SourceDir *paths.Path
64-
UtilityDir *paths.Path
65-
Location LibraryLocation
66-
ContainerPlatform *cores.PlatformRelease `json:""`
67-
Layout LibraryLayout
68-
RealName string
69-
DotALinkage bool
70-
Precompiled bool
71-
LDflags string
72-
IsLegacy bool
73-
Version *semver.Version
74-
License string
75-
Properties *properties.Map
62+
InstallDir *paths.Path
63+
SourceDir *paths.Path
64+
UtilityDir *paths.Path
65+
Location LibraryLocation
66+
ContainerPlatform *cores.PlatformRelease `json:""`
67+
Layout LibraryLayout
68+
RealName string
69+
DotALinkage bool
70+
Precompiled bool
71+
LDflags string
72+
IsLegacy bool
73+
Version *semver.Version
74+
License string
75+
AdditionalIncludePaths []*paths.Path
76+
Properties *properties.Map
7677
}
7778

7879
func (library *Library) String() string {

arduino/libraries/loader.go

+8
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,14 @@ func makeNewLibrary(libraryDir *paths.Path, location LibraryLocation) (*Library,
107107
library.DotALinkage = libProperties.GetBoolean("dot_a_linkage")
108108
library.Precompiled = libProperties.GetBoolean("precompiled")
109109
library.LDflags = strings.TrimSpace(libProperties.Get("ldflags"))
110+
additionalIncludePathsList := libProperties.Get("additional_include_paths")
111+
if additionalIncludePathsList != "" {
112+
temp := strings.Split(additionalIncludePathsList, ",")
113+
for _, el := range temp {
114+
dir := paths.New(libraryDir.Join(el).String())
115+
library.AdditionalIncludePaths = append(library.AdditionalIncludePaths, dir)
116+
}
117+
}
110118
library.Properties = libProperties
111119

112120
return library, nil

legacy/builder/phases/libraries_builder.go

+5
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,11 @@ func compileLibrary(ctx *types.Context, library *libraries.Library, buildPath *p
142142
}
143143

144144
if library.Layout == libraries.RecursiveLayout {
145+
if library.AdditionalIncludePaths != nil {
146+
for _, el := range library.AdditionalIncludePaths {
147+
includes = append(includes, utils.WrapWithHyphenI(el.String()))
148+
}
149+
}
145150
libObjectFiles, err := builder_utils.CompileFilesRecursive(ctx, library.SourceDir, libraryBuildPath, buildProperties, includes)
146151
if err != nil {
147152
return nil, i18n.WrapError(err)

rpc/commands/lib.proto

+1
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ message Library {
154154
string version = 21;
155155
string license = 22;
156156
map<string, string> properties = 23;
157+
string additional_include_paths = 24;
157158
}
158159

159160
enum LibraryLayout {

0 commit comments

Comments
 (0)