Empty QtQuick2 project has high RAM consumption
-
wrote on 14 Dec 2017, 10:26 last edited by
It uses ~30MB of RAM. Can someone tell me why that happens?
-
@Manu19 That's because all the Qt libraries used by the app are loaded into memory.
On Linux you can check which libraries your app uses like this:ldd PATH_TO_YOUR_APP
-
wrote on 18 Dec 2017, 12:59 last edited by
Ok, thank you for your answer. Can I disable parts of the Qt libraries?
-
@Manu19 First step is to check which modules you're currently using: in your pro file check what you add to QT +=
Do you want to run your app on limited hardware? If not then 30MB is nothing I would carry about too much. -
@Manu19 First step is to check which modules you're currently using: in your pro file check what you add to QT +=
Do you want to run your app on limited hardware? If not then 30MB is nothing I would carry about too much.
1/5