Details
-
Type:
Bug
-
Status: Closed
-
Priority:
P2: Important
-
Resolution: Done
-
Affects Version/s: Qt Creator 3.1.0-rc1
-
Fix Version/s: Qt Creator 3.1.0
-
Component/s: QNX Support
-
Labels:
-
Commits:d9548d6422d620ab1cd55ef0a58ea628f6be87a5
Description
The project wizard generates "deployment.pri" the following deployment applied on QNX identified as a unix derivate:
...
} else:unix {
isEmpty(target.path) {
target.path = /opt/$${TARGET}/bin
export(target.path)
}
INSTALLS += target
}
The "/opt" folder resides in an read-only file system partition on QNX. Due to this, deployment fails. I expect, this will fail on other embedded systems which have read-only flash partitions
"/tmp" is a better default which will always work.