#7826 closed Bugs (fixed)
qt5.jam uses wrong path for QtCore library if debug symbols are seperate
Reported by: | Owned by: | Vladimir Prus | |
---|---|---|---|
Milestone: | To Be Determined | Component: | build |
Version: | Boost Release Branch | Severity: | Problem |
Keywords: | Cc: |
Description
This error occured during (static) linking when cross-compiling a Qt5 application using mingw:
relevant part of the b2 -d+2 output:
"/usr/bin/i686-w64-mingw32-g++" [...] -lQt5Widgetsd -lQt5Svgd -lQt5OpenGLd -lQt5Xmld -lQt5Guid -lQtCored [...]
/usr/bin/i686-w64-mingw32-ld: cannot find -lQtCored
The library filename in my case is "libQt5Cored.a"
The attached patch solves the problem at least in my case.
Qt5 support otherwise works like a charm here :-)
Attachments (1)
Change History (3)
by , 10 years ago
Attachment: | qt5-seperate-debug-name.diff added |
---|
comment:1 by , 10 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 by , 10 years ago
Note:
See TracTickets
for help on using tickets.
(In [82193]) Fix debug library name for QtCore. Fixes #7826