Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Compiling Qt for Windows 98

Tags:

I need to support Windows 98. The Qt documentation claims this is possible, but there are no instructions. The distributed binaries of Qt 4.6 don't run on Win98 and the majority of Qt applications I have sampled also don't. For several apps that do run on 98, I have asked authors how they did it, but the common answer is that it was accidental and they don't know what factors caused it.

In searching the forums for help, I found only guesses that turned out to be wrong. For example, one belief is that to compile for Win9x, you must build the tools and the apps on that platform. Yet, things I found to run were built on newer versions of Windows.

  • What is required to build the Qt dev tools and then applications for Win98?
  • How about cross-compiling from WinXP or Linux?
  • Are there specific components that can't be made to run on Win98?
  • Are there particular difficulties with dynamic or static linking for Win98 support?
like image 785
user287424 Avatar asked Jun 08 '10 16:06

user287424


1 Answers

Here is as far as I'm going to get on this:

You can target Windows 98 using MinGW or VC++ 6 SP5 from any Windows version. Cross-compiling from Linux is doable but not easy to set up.

Qt 4.4.3 was the last version officially tested on Win98. To run the distributed binaries on Win98, you need to install older versions of glu32.dll and opengl32.dll that are available from Microsoft. Due to an unresolved bug, Assistant will launch but can't load the help files. The alternate version in the bin directory, assistant_adp.exe, works fine. It seems the only other potential problem is that QtOpenGL may use features not available on older boxes.

Qt 4.5.3 appears to be still compatible except for WebKit, OpenGL, and Phonon. QtOpenGL expects OpenGL 1.5, which I don't know is even possible on older boxes. I didn't look into Phonon deeply enough to see exactly what the problems are. QtWebKit now requires Win2K or better. The distributed binaries work mostly OK. Assistant depends on QtWebKit, so will not launch, but assistant_adp.exe still works.

Qt 4.6.3 distributed binaries are now completely incompatible with Win98. It may be possible to get some things working with MinGW 4.4 and a lot of hacking.

Building Qt Creator requires Qt 4.6.0 and either MinGW 4.4 or VS 2008.

like image 83
user287424 Avatar answered Sep 22 '22 19:09

user287424