Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
Qt Installer Framework 7zip exception not enough memory
-
Hi,
When I want to generate repository using repogen on Windows10 with Qt Installer Framework 3.0.
I have an issue with 7zip:repogen.exe -p packages repository
Caught 7zip exception: Cannot create archive "<full_path>\1.0.3lib.7z": not enough memoryI have at least 24GB of free memory, and enough disk space. Manual 7zip works perfectly.
Note: The lib folder contains some .lib and one of them is big: 387MB (total 410MB).
Is there any limitation of QtInstallerFramework? How can I use big files with this tool?
-
Hi and welcome to devnet forum
I doubt that there is a limitation, but I do not have enough insight there.
Try to remove the big library in order to check, if it is the real problem.
-
@lbaudouin
There's nothing "big" about 400MB as far as 7Zip is concerned! Sounds like something else is wrong.
-
If I replace the 400MB by a smaller one (100MB), it works.
-
As @JonB I consider this as odd. I am using 7z on a regular basis with really large files.
The only explanation possible is that there is part of 7z integrated in the installer and that part is creating the problem.
This is merely a user driven forum. Typically with Installer FrameWork questions not a lot of feedback is anticipated. Possibly on the developer mailing list there are some of IFW developers around.
They would know also if there are really such limitations.
-
I too am running into this issue. However I am trying to build the offline installer. When use the release build for my program the libraries are small enough that they do not trigger this issue. Using the Debug build causes the binarycreator to throw a fit. In my case it really does not like Qt5Cored.dll. When that dll is present it triggers the following:
[2757] Warning: QFile::remove: Empty or null file name Caught exception: Cannot create archive "C:\Users\XXXX\AppData\Local\Temp\binarycreator-l9Mfi9\com.XXXX.xxxxx\2.0.0content.7z": not enough memory
I'm not sure if this helps matters at all but if you find out anything from the developer mailing list please drop a comment here.
BTW, I am using the 3.0.4 release for windows.
-
This post is deleted!
-
This post is deleted!
-
Hi,
I'm facing just same problem.
After some investigation, I found thant this is caused by multithread build of 7zip codes.
Though I have not solved this bug(must be a bug) yet, I found we can use Single Threaded IFW by specifing _7ZIP_ST preprocessor macro on building IFW.
(If you can make effort to build IFW by yourself)
anyway, I'll make bug report to IFW team.
-
Thanks for reporting this. Please add a link to the report her once you've done it, so others can follow.
Regards
-
O key, I see, I'll put link to the issue after submit it.
because I'm now doing some more investigation(for writing more precise report), it will takes more time.
Thank you for your guide.
-
I searched bug tracker site for this issue, then found this:
https://bugreports.qt.io/browse/QTIFW-1157
This issue is already closed because this is duplication of this:
https://bugreports.qt.io/browse/QTIFW-957Regards.
-
@kuro said in Qt Installer Framework 7zip exception not enough memory:
I searched bug tracker site for this issue, then found this:
https://bugreports.qt.io/browse/QTIFW-1157
This issue is already closed because this is duplication of this:
https://bugreports.qt.io/browse/QTIFW-957Regards.
Thanks for following up and reporting links
-
@kuro Thanks for your findings. You can vote and comment at the bug QTIFW-957 to give it more priority :)
-
@kuro Where are you defining this preprocessor macro?