<?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[Configure problem problem v4.8.3; on Ubuntu (Mint Maya distribution)]]></title><description><![CDATA[<p dir="auto">Ran ./configure - no error.</p>
<p dir="auto">When running make (either as std user or sudo) get the following error:</p>
<p dir="auto">@g++ -m64 -pipe -O2 -fvisibility=hidden -fvisibility-inlines-hidden -Wall -W -D_REENTRANT -fPIC -DQT_SHARED -DQT_BUILD_XML_LIB -DQT_NO_USING_NAMESPACE -DQT_NO_CAST_TO_ASCII -DQT_ASCII_CAST_WARNINGS -DQT3_SUPPORT -DQT_MOC_COMPAT -DQT_USE_QSTRINGBUILDER -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_HAVE_MMX -DQT_HAVE_3DNOW -DQT_HAVE_SSE -DQT_HAVE_MMXEXT -DQT_HAVE_SSE2 -DQT_HAVE_SSE3 -DQT_HAVE_SSSE3 -DQT_HAVE_SSE4_1 -DQT_HAVE_SSE4_2 -DQT_HAVE_AVX -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -I../../mkspecs/linux-g++-64 -I. -I../../include/QtCore -I../../include -I../../include/QtXml -I.rcc/release-shared -I.moc/release-shared -x c++-header -c ../corelib/global/qt_pch.h -o .pch/release-shared/QtXml.gch/c++<br />
In file included from ../../include/QtCore/qglobal.h:1:0,<br />
from ../corelib/global/qt_pch.h:52:<br />
../../include/QtCore/../../src/corelib/global/qglobal.h:62:28: fatal error: ../../include/QtCore/QtCore/qconfig.h: Permission denied@</p>
<p dir="auto">The problem, I believe is trying to #include "include/QtCore/QtCore/qconfig.h" as -I../../include/QtCore is expanded on the call to g++; this can be fixed by changing:</p>
<p dir="auto">@#include &lt;QtConfig/qtconfig.h&gt;@</p>
<p dir="auto">to</p>
<p dir="auto">@#include &lt;qtconfig.h&gt;@</p>
<p dir="auto">at <em>corelib/global/qt_pch.h:52</em>, or by removing_ -I../../include/QtCore_ from the <em>Makefile</em>. The former may cause configuration issues and the latter is a pain - any ideas on how to correct either in the configure script? Anyone else run into this?</p>
]]></description><link>https://forum.qt.io/topic/20316/configure-problem-problem-v4-8-3-on-ubuntu-mint-maya-distribution</link><generator>RSS for Node</generator><lastBuildDate>Fri, 17 Apr 2026 22:13:21 GMT</lastBuildDate><atom:link href="https://forum.qt.io/topic/20316.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 03 Oct 2012 01:13:59 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Configure problem problem v4.8.3; on Ubuntu (Mint Maya distribution) on Thu, 04 Oct 2012 06:13:49 GMT]]></title><description><![CDATA[<p dir="auto">Quick fix:</p>
<p dir="auto">create a shell script (or run commands) to add -I../../include prior to the -I../../include/QtCore in all makefiles:</p>
<p dir="auto">@!/bin/sh<br />
grep -rlE "Makefile" . | xargs sed -i 's|-I/../../include/QtCore|-I/../../include -I/../../include/QtCore|g'<br />
grep -rlE "Makefile" . | xargs sed -i 's|-I/../../../include/QtCore|-I/../../../include -I/../../../include/QtCore|g'<br />
grep -rlE "Makefile" . | xargs sed -i 's|-I/../../../../include/QtCore|-I/../../../../include -I/../../../../include/QtCore|g'@</p>
<p dir="auto">and run from the root directory of the Qt source installation (right after configure).</p>
<p dir="auto">This is an ugly patch - does anyone understand qmake better than I do (at all) to change the order of the include directories?</p>
]]></description><link>https://forum.qt.io/post/153616</link><guid isPermaLink="true">https://forum.qt.io/post/153616</guid><dc:creator><![CDATA[hgillesp]]></dc:creator><pubDate>Thu, 04 Oct 2012 06:13:49 GMT</pubDate></item><item><title><![CDATA[Reply to Configure problem problem v4.8.3; on Ubuntu (Mint Maya distribution) on Wed, 03 Oct 2012 01:14:34 GMT]]></title><description><![CDATA[<p dir="auto">sorry version 4.8.3, not 2.8.3</p>
]]></description><link>https://forum.qt.io/post/153539</link><guid isPermaLink="true">https://forum.qt.io/post/153539</guid><dc:creator><![CDATA[hgillesp]]></dc:creator><pubDate>Wed, 03 Oct 2012 01:14:34 GMT</pubDate></item></channel></rss>