DiskArbitration not found?
Solved
QML and Qt Quick
-
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?
-
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... -
Fixed. Thanks!
-
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. -
@igor_stravinsky
how did you fixed??