We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f1f64c commit afb26d6Copy full SHA for afb26d6
src/arduino.cc/builder/gcc_preproc_runner.go
@@ -87,7 +87,7 @@ func (s *GCCPreprocRunnerForDiscoveringIncludes) Run(context map[string]interfac
87
}
88
89
func prepareGCCPreprocRecipeProperties(context map[string]interface{}, sourceFilePath string, targetFilePath string) (map[string]string, string, error) {
90
- if !filepath.IsAbs(targetFilePath) {
+ if targetFilePath != utils.NULLFile() {
91
preprocPath := context[constants.CTX_PREPROC_PATH].(string)
92
err := utils.EnsureFolderExists(preprocPath)
93
if err != nil {
0 commit comments