We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55251c5 commit 14b777fCopy full SHA for 14b777f
phases/libraries_builder.go
@@ -90,7 +90,7 @@ func fixLDFLAGforPrecompiledLibraries(ctx *types.Context, libraries []*types.Lib
90
name = strings.Replace(name, "lib", "", 1)
91
libs_cmd += "-l" + name + " "
92
}
93
- ctx.BuildProperties[constants.BUILD_PROPERTIES_COMPILER_LIBRARIES_LDFLAGS] = "\"-L" + path + "\" " + libs_cmd
+ ctx.BuildProperties[constants.BUILD_PROPERTIES_COMPILER_LIBRARIES_LDFLAGS] += "\"-L" + path + "\" " + libs_cmd + " "
94
95
96
return nil
0 commit comments