We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0050491 commit 08d1f14Copy full SHA for 08d1f14
1 file changed
bind/utils.go
@@ -208,11 +208,11 @@ else:
208
cfg.Version = raw.Version
209
cfg.ExtSuffix = raw.ExtSuffix
210
cfg.CFlags = strings.Join([]string{
211
- "-I" + raw.IncDir,
+ `"-I` + raw.IncDir + `"`,
212
}, " ")
213
cfg.LdFlags = strings.Join([]string{
214
- "-L" + raw.LibDir,
215
- "-l" + raw.LibPy,
+ `"-L` + raw.LibDir + `"`,
+ `"-l` + raw.LibPy + `"`,
216
raw.ShLibs,
217
raw.SysLibs,
218
0 commit comments