You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adding -built-in-libraries command line param: this way built in libraries,
less important than those coming with cores and stored into user's
sketchbook, are correctly prioritized
Signed-off-by: Federico Fissore <[email protected]>
buildOptionsFileFlag=flag.String(FLAG_BUILD_OPTIONS_FILE, "", "Instead of specifying --"+FLAG_HARDWARE+", --"+FLAG_TOOLS+" etc every time, you can load all such options from a file")
120
122
flag.Var(&hardwareFoldersFlag, FLAG_HARDWARE, "Specify a 'hardware' folder. Can be added multiple times for specifying multiple 'hardware' folders")
121
123
flag.Var(&toolsFoldersFlag, FLAG_TOOLS, "Specify a 'tools' folder. Can be added multiple times for specifying multiple 'tools' folders")
124
+
flag.Var(&librariesBuiltInFoldersFlag, FLAG_BUILT_IN_LIBRARIES, "Specify a built-in 'libraries' folder. These are low priority libraries. Can be added multiple times for specifying multiple built-in 'libraries' folders")
122
125
flag.Var(&librariesFoldersFlag, FLAG_LIBRARIES, "Specify a 'libraries' folder. Can be added multiple times for specifying multiple 'libraries' folders")
123
126
flag.Var(&customBuildPropertiesFlag, FLAG_PREFS, "Specify a custom preference. Can be added multiple times for specifying multiple custom preferences")
constMSG_WARNING_PLATFORM_MISSING_VALUE="Warning: platform.txt from core '{0}' misses property '{1}', using default value '{2}'. Consider upgrading this core."
230
230
constMSG_WARNING_PLATFORM_OLD_VALUES="Warning: platform.txt from core '{0}' contains deprecated {1}, automatically converted to {2}. Consider upgrading this core."
231
231
constMSG_WARNING_SPURIOUS_FILE_IN_LIB="WARNING: Spurious {0} folder in '{1}' library"
232
+
constMSG_WRONG_PROPERTIES_FILE="Property line '{0}' in file {1} is invalid"
233
+
constMSG_WRONG_PROPERTIES="Property line '{0}' is invalid"
0 commit comments