Re: [Development] trying to build qt 5.5 git branch. Missing qtbase\include dir and content.

2015-02-25 Thread Gunnar Roth

Hi Thiago,

that was the right hint. I had to create the .git dir in every module dir.

I did get the code by using git, but i have a copy script which copies the relevant parts of the qt src code and i ignored the .git directories.

So thank you very much for your help.

 

Regards,

Gunnar

 

 

Gesendet: Dienstag, 24. Februar 2015 um 18:56 Uhr
Von: "Thiago Macieira" 
An: development@qt-project.org
Betreff: Re: [Development] trying to build qt 5.5 git branch. Missing qtbase\include dir and content.

On Tuesday 24 February 2015 07:42:16 Gunnar Roth wrote:
> Hello,
> i am trying to build qt5.5 from git on windows . i do not want to make a
> deveolper build but want to build the code as i normally do. After creating
> the configure.exe, configureing and starting the build, qtcore build fails
> because it cannot find headers, which normally reside in qtbase\include but
> this is completely missing in the git src code. what do i need to do to
> create the source code in a form like it is in released tar.gz files?

How did you obtain the source code?

If you used git clone, this should not be happening.

If you used git archive or downloaded an archive from the web interfaces, then
this is the root cause. Create a directory called .git inside qtbase to fool
the Qt buildsystem into thinking you have a clone.
--
Thiago Macieira - thiago.macieira (AT) intel.com
Software Architect - Intel Open Source Technology Center

___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development



___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] trying to build qt 5.5 git branch. Missing qtbase\include dir and content.

2015-02-24 Thread Thiago Macieira
On Tuesday 24 February 2015 07:42:16 Gunnar Roth wrote:
> Hello,
> i am trying to build qt5.5 from git on windows . i do not want to make a
> deveolper build but want to build the code as i normally do. After creating
> the configure.exe, configureing and starting the build, qtcore build fails
> because it cannot find headers, which normally reside in qtbase\include but
> this is completely missing in the git src code. what do i need to do to
> create the source code in a form like it is in released tar.gz files? 

How did you obtain the source code?

If you used git clone, this should not be happening.

If you used git archive or downloaded an archive from the web interfaces, then 
this is the root cause. Create a directory called .git inside qtbase to fool 
the Qt buildsystem into thinking you have a clone.
-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center

___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] trying to build qt 5.5 git branch. Missing qtbase\include dir and content.

2015-02-24 Thread Gunnar Roth
I now started all over, i can find qt-src\qtbase\include\QtCore now. But build fails with

        cl -c -nologo -Zm200 -Zc:wchar_t -O2 -MD -Zi -D_HAS_EXCEPTIONS=0 -MP -GR -GL -W3 -w34100 -w34189 -w44996 /Fd..\..\..\lib\Qt5BootstrapRTIL.pdb -DUNICODE
-DWIN32 -DQT_BOOTSTRAPPED -DQT_LITE_UNICODE -DQT_NO_CAST_TO_ASCII -DQT_NO_CODECS -DQT_NO_DATASTREAM -DQT_NO_LIBRARY -DQT_NO_QOBJECT -DQT_NO_SYSTEMLOCALE -DQT_NO
_THREAD -DQT_NO_UNICODETABLES -DQT_NO_USING_NAMESPACE -DQT_NO_DEPRECATED -DQT_NO_TRANSLATION -DQT_QMAKE_LOCATION=\"C:/RTIL/Shared/Qt/5.5.0/bld/WIN32-VS11-32/qtb
ase/bin/qmake\" -DQT_CRYPTOGRAPHICHASH_ONLY_SHA1 -DQT_NO_CAST_FROM_ASCII -DQT_BUILD_BOOTSTRAP_LIB -DQT_BUILDING_QT -D_CRT_SECURE_NO_WARNINGS -D_USE_MATH_DEFINES
 -DQT_ASCII_CAST_WARNINGS -DQT_MOC_COMPAT -DQT_USE_QSTRINGBUILDER -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x040800 -DQT_NO_EXCEPTIONS -DQT_NO_DE
BUG -DNDEBUG -I"C:\RTIL\Shared\Qt\5.5.0\qt-src\qtbase\src\tools\bootstrap" -I"." -I"C:\RTIL\Shared\Qt\5.5.0\qt-src\qtbase\src\3rdparty\zlib" -I"C:\RTIL\Shared\Q
t\5.5.0\qt-src\qtbase\include" -I"C:\RTIL\Shared\Qt\5.5.0\qt-src\qtbase\include\QtCore" -I"C:\RTIL\Shared\Qt\5.5.0\qt-src\qtbase\include\QtXml" -I"C:\RTIL\Share
d\Qt\5.5.0\qt-src\qtbase\include\QtCore\5.5.0" -I"C:\RTIL\Shared\Qt\5.5.0\qt-src\qtbase\include\QtCore\5.5.0\QtCore" -I"C:\RTIL\Shared\Qt\5.5.0\qt-src\qtbase\in
clude\QtXml\5.5.0" -I"C:\RTIL\Shared\Qt\5.5.0\qt-src\qtbase\include\QtXml\5.5.0\QtXml" -I"..\..\..\include" -I"..\..\..\include\QtCore" -I"C:\RTIL\Shared\Qt\5.5
.0\bld\WIN32-VS11-32\qtbase\include\QtXml" -I"tmp" -I"C:\RTIL\Shared\Qt\5.5.0\qt-src\qtbase\mkspecs\win32-msvc2012" -Fo.obj\release\ @C:\Users\adrogu1\AppData\L
ocal\Temp\qdom.obj.6168.17472.jom
qdom.cpp
C:\RTIL\Shared\Qt\5.5.0\qt-src\qtbase\src\xml\dom\qdom.cpp(35) : fatal error C1083: Cannot open include file: 'qdom.h': No such file or directory

 

thats would be in  qt-src\qtbase\include\QtXml  but does not exist.

 

i also see now that this is Qt5BootstrapRTIL which is being build.

 

but still got no clue whats wrong actually.

 

Regards,

Gunnar

 

 

 

Gesendet: Dienstag, 24. Februar 2015 um 10:34 Uhr
Von: "Gunnar Roth" 
An: "Konstantin Ritt" 
Cc: "development@qt-project.org" 
Betreff: Re: [Development] trying to build qt 5.5 git branch. Missing qtbase\include dir and content.



Yes, as i wrote "After creating the configure.exe, configuring [..]"


 

from the log:

Starting Qt configuring for win32-vs11-32 
+ cd qtbase
+ C:\RTIL\Shared\Qt\5.5.0\qt-src\qtbase\configure.bat -top-level -prefix C:\RTIL\SharedBin\Qt\5.5.0\WIN32-VS11-32 -platform win32-msvc2012  -debug-and-release -rtti -force-debug-info -mp -ltcg -qtlibinfix RTIL -opensource -confirm-license -nomake examples -nomake tests -system-libjpeg -opengl dynamic -directwrite -direct2d

 

 

Regards,

Gunnar


Gesendet: Dienstag, 24. Februar 2015 um 09:56 Uhr
Von: "Konstantin Ritt" 
An: "Gunnar Roth" 
Cc: "development@qt-project.org" 
Betreff: Re: [Development] trying to build qt 5.5 git branch. Missing qtbase\include dir and content.


How did you configure it? Did you run configure.bat?

 

Regards,
Konstantin

 

2015-02-24 10:42 GMT+04:00 Gunnar Roth <gunnar.r...@gmx.de>:




Hello,

i am trying to build qt5.5 from git on windows . i do not want to make a deveolper build but want to build the code as i normally do.

After creating the configure.exe, configureing and starting the build, qtcore build fails because it cannot find headers, which normally reside in qtbase\include but this is completely missing in the git src code.

what do i need to do to create the source code in a form like it is in released tar.gz files?

 

Thank you in advance,

Gunnar Roth

 



___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development
 







___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development


___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] trying to build qt 5.5 git branch. Missing qtbase\include dir and content.

2015-02-24 Thread Gunnar Roth
Yes, as i wrote "After creating the configure.exe, configuring [..]"


 

from the log:

Starting Qt configuring for win32-vs11-32 
+ cd qtbase
+ C:\RTIL\Shared\Qt\5.5.0\qt-src\qtbase\configure.bat -top-level -prefix C:\RTIL\SharedBin\Qt\5.5.0\WIN32-VS11-32 -platform win32-msvc2012  -debug-and-release -rtti -force-debug-info -mp -ltcg -qtlibinfix RTIL -opensource -confirm-license -nomake examples -nomake tests -system-libjpeg -opengl dynamic -directwrite -direct2d

 

 

Regards,

Gunnar


Gesendet: Dienstag, 24. Februar 2015 um 09:56 Uhr
Von: "Konstantin Ritt" 
An: "Gunnar Roth" 
Cc: "development@qt-project.org" 
Betreff: Re: [Development] trying to build qt 5.5 git branch. Missing qtbase\include dir and content.


How did you configure it? Did you run configure.bat?

 

Regards,
Konstantin

 

2015-02-24 10:42 GMT+04:00 Gunnar Roth <gunnar.r...@gmx.de>:




Hello,

i am trying to build qt5.5 from git on windows . i do not want to make a deveolper build but want to build the code as i normally do.

After creating the configure.exe, configureing and starting the build, qtcore build fails because it cannot find headers, which normally reside in qtbase\include but this is completely missing in the git src code.

what do i need to do to create the source code in a form like it is in released tar.gz files?

 

Thank you in advance,

Gunnar Roth

 



___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development
 






___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] trying to build qt 5.5 git branch. Missing qtbase\include dir and content.

2015-02-24 Thread Konstantin Ritt
How did you configure it? Did you run configure.bat?

Regards,
Konstantin

2015-02-24 10:42 GMT+04:00 Gunnar Roth :

> Hello,
> i am trying to build qt5.5 from git on windows . i do not want to make a
> deveolper build but want to build the code as i normally do.
> After creating the configure.exe, configureing and starting the build,
> qtcore build fails because it cannot find headers, which normally reside in
> qtbase\include but this is completely missing in the git src code.
> what do i need to do to create the source code in a form like it is in
> released tar.gz files?
>
> Thank you in advance,
> Gunnar Roth
>
>
> ___
> Development mailing list
> Development@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/development
>
>
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


[Development] trying to build qt 5.5 git branch. Missing qtbase\include dir and content.

2015-02-23 Thread Gunnar Roth
Hello,

i am trying to build qt5.5 from git on windows . i do not want to make a deveolper build but want to build the code as i normally do.

After creating the configure.exe, configureing and starting the build, qtcore build fails because it cannot find headers, which normally reside in qtbase\include but this is completely missing in the git src code.

what do i need to do to create the source code in a form like it is in released tar.gz files?

 

Thank you in advance,

Gunnar Roth

 
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development