<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[HOW to update ..5.9.9 to 5.15.2 ..safely...]]></title><description><![CDATA[<p dir="auto">OK, I am not out of the woods...</p>
<p dir="auto">I have RUNNING 5.9.9.  and need to add as existing project code build  in 5.15.2<br />
In other words I need to UPDATE form 5.9 to 5.15.</p>
<p dir="auto">I do not see "update" option in 5.9.9</p>
<p dir="auto">Please suggest safest way to accomplish the task.<br />
I do not care if I have to rebuild existing project running in 5.9.9.</p>
<p dir="auto">The project build under 5.15.2 are more important.</p>
<p dir="auto">Thanks</p>
]]></description><link>https://forum.qt.io/topic/126881/how-to-update-5-9-9-to-5-15-2-safely</link><generator>RSS for Node</generator><lastBuildDate>Mon, 27 Apr 2026 05:12:30 GMT</lastBuildDate><atom:link href="https://forum.qt.io/topic/126881.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 22 May 2021 02:12:52 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to HOW to update ..5.9.9 to 5.15.2 ..safely... on Tue, 25 May 2021 17:28:59 GMT]]></title><description><![CDATA[<p dir="auto">@AnneRanch<br />
on Linux:<br />
export QT_DIR=/opt/thirdParties/Qt/5.15.2/gcc_64 &lt;==my Qt install location<br />
export  PATH=$QT_DIR/bin:$PATH<br />
export LD_LIBRARY_PATH=$QT_DIR/lib:$LD_LIBRARY_PATH<br />
Note that QT_DIR comes first to override 5.9.9<br />
you can also purge 5.9.9 from your machine and use 5.15.2 only if possible.</p>
<p dir="auto">If you do not set qt in the path, qt creator will not be able to  see it.</p>
<p dir="auto">On Windows:<br />
simply switch to the install path of Qt in VC</p>
]]></description><link>https://forum.qt.io/post/661509</link><guid isPermaLink="true">https://forum.qt.io/post/661509</guid><dc:creator><![CDATA[JoeCFD]]></dc:creator><pubDate>Tue, 25 May 2021 17:28:59 GMT</pubDate></item><item><title><![CDATA[Reply to HOW to update ..5.9.9 to 5.15.2 ..safely... on Sun, 23 May 2021 06:26:27 GMT]]></title><description><![CDATA[<p dir="auto">@AnneRanch said in <a href="/post/661065">HOW to update ..5.9.9 to 5.15.2 ..safely...</a>:</p>
<blockquote>
<p dir="auto">sudo apt install qtcreator</p>
</blockquote>
<p dir="auto">So you don't have any Qt version installed, and you are not using the maintenance tool after all? Well then: install some Qt version (in whatever way you prefer. I guess you'll ignore any recommendation I may have anyway), then add it in Qt Creator options, create a Kit - and then proceed with my list of things to do from previous post.</p>
<p dir="auto">It's all so much easier when you install Qt through the maintenance tool...</p>
]]></description><link>https://forum.qt.io/post/661091</link><guid isPermaLink="true">https://forum.qt.io/post/661091</guid><dc:creator><![CDATA[sierdzio]]></dc:creator><pubDate>Sun, 23 May 2021 06:26:27 GMT</pubDate></item><item><title><![CDATA[Reply to HOW to update ..5.9.9 to 5.15.2 ..safely... on Sat, 22 May 2021 22:48:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sierdzio">@<bdi>sierdzio</bdi></a><br />
in Project side panel, enable your 5.15.2 kit for this project<br />
have no 5.15.2  so</p>
<p dir="auto">After fresh<br />
sudo apt install qtcreator</p>
<p dir="auto">on latest clean  Ubuntu 21.04<br />
I first check tools - options  - kits<br />
<strong>and have NO entries here</strong><br />
( yes I now know any Qt install does EXPTEC OS to provide ...<br />
no problema as long as it it KNOWN up front....)</p>
<p dir="auto">As suggested I  go to<br />
<a href="https://doc.qt.io/qt-5/linux.html" target="_blank" rel="noopener noreferrer nofollow ugc">https://doc.qt.io/qt-5/linux.html</a><br />
and  do</p>
<p dir="auto">sudo apt-get install build-essential libgl1-mesa-dev</p>
<p dir="auto">then reboot for good measure</p>
<p dir="auto">and check tools options kits again</p>
<p dir="auto">NO CHANGE - no kits  no compiler nada nichevo</p>
]]></description><link>https://forum.qt.io/post/661065</link><guid isPermaLink="true">https://forum.qt.io/post/661065</guid><dc:creator><![CDATA[Anonymous_Banned275]]></dc:creator><pubDate>Sat, 22 May 2021 22:48:24 GMT</pubDate></item><item><title><![CDATA[Reply to HOW to update ..5.9.9 to 5.15.2 ..safely... on Sat, 22 May 2021 09:41:43 GMT]]></title><description><![CDATA[<ul>
<li>in Project side panel, enable your 5.15.2 kit for this project</li>
<li>if you are using any build configuration flags, extra qmake arguments etc. copy them from your 5.9.9 kit settings</li>
<li>compile your project with 5.15.2 kit selected</li>
<li>if you see any compilation errors or new warnings, fix them (or post in forum so we can help you fix them)</li>
<li>if you need to support both 5.9 and 5.15 and there are some incomatibilities - <code>#ifdef</code> blocks need to be added to fix it, for example:</li>
</ul>
<pre><code>#if (QT_VERSION &gt;= QT_VERSION_CHECK(5, 15, 0))
// code compatible with 5.15
#else
// code compatible with 5.9
#endif
</code></pre>
]]></description><link>https://forum.qt.io/post/660990</link><guid isPermaLink="true">https://forum.qt.io/post/660990</guid><dc:creator><![CDATA[sierdzio]]></dc:creator><pubDate>Sat, 22 May 2021 09:41:43 GMT</pubDate></item></channel></rss>