Closed GWRon closed 5 years ago
When trying to build a shared library in a directory with spaces you might run into trouble.
Reason? Missing quotation marks.
"C:/Tools/BlitzMaxNG/MinGW32x86/bin/g++.exe" -Wl,--stack,4194304 -s -mthreads -shared -static-libgcc -o "C:/Projects/Dir with space/file.dll" C:/Projects/Dir with space/file.def -Wl,--out-implib,C:/Projects/Dir with space/file.a "C:/Tools/BlitzMaxNG/tmp/ld.tmp"
So both: .def and .a files need quotation marks
Changes are in "bmk_util.bmx"
Lines 340, 344, 349 need some CQuote() wraps sb.Append(" ").Append(CQuote(def))
CQuote()
sb.Append(" ").Append(CQuote(def))
When trying to build a shared library in a directory with spaces you might run into trouble.
Reason? Missing quotation marks.
"C:/Tools/BlitzMaxNG/MinGW32x86/bin/g++.exe" -Wl,--stack,4194304 -s -mthreads -shared -static-libgcc -o "C:/Projects/Dir with space/file.dll" C:/Projects/Dir with space/file.def -Wl,--out-implib,C:/Projects/Dir with space/file.a "C:/Tools/BlitzMaxNG/tmp/ld.tmp"
So both: .def and .a files need quotation marks