DiskArbitration not found?
Solved
QML and Qt Quick
-
wrote on 20 Sept 2017, 21:14 last edited by
I just updated to Xcode 9, and now in a previously running Qt Quick project I get an error:
"Framework not found DiskArbitration"
Does anyone know how to remedy this?
-
wrote on 21 Sept 2017, 19:08 last edited by
sdk download apple https://developer.apple.com/download/ or
https://forum.qt.io/topic/83447/made-the-mistake-of-updating-xcode
or leave any QMAKE_MAC_SDK in pro file... -
wrote on 21 Sept 2017, 21:37 last edited by
Fixed. Thanks!
-
wrote on 4 Oct 2017, 22:22 last edited by
Found the following with Qt5.9.1 on OS X 10.11.6: when building for 64bit add to the pro file:
QMAKE_LFLAGS += -F/System/Library/Frameworks -L/usr/lib
This resolves the DiskArbitration framework and c++ library not found issue. After these tricks the 64bit application compiles and runs. -
Fixed. Thanks!
wrote on 23 Dec 2017, 10:16 last edited by@igor_stravinsky
how did you fixed??