Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - TeLLie

Pages: 1 2 [3] 4 5 ... 19
31
Programming / Re: Qt6 Development
« on: January 03, 2025, 01:33:40 pm »
Hi Ko,

For me its hanging the machine when i clone big repos, like de webengine from Qt6 (The RPM version from git)

I have try you're 2.42.0 also, but that also hangs the machine after some time.

I don't have log/popups ...

Best wishes for 2025 :)

32
Programming / Re: Qt6 Development
« on: January 02, 2025, 10:55:54 pm »
Hi PAul,

Yes its indeed multimedia from QT
I have not found a config.summary in multymedia dir
Or you wanted the one from base, i attach that one.
I use this cmd...

SET GCCOPT=-static-libgcc
set release=F:\qt6-6.2.x
set PATH=%release%\bin;%PATH%
set BEGINLIBPATH=%release%\lib;%release%\plugins;%BEGINLIBPATH%
set INCLUDEPATH=%release%\include;%INCLUDEPATH%
set LIBPATHSTRICT=T
cmake .. -G "Unix Makefiles" -DCMAKE_PREFIX_PATH=f:/Qt6-6.2.x -DCMAKE_INSTALL_PREFIX:PATH=f:/qt6-6.2.x -DQT_BUILD_EXAMPLES=OFF -DQT_BUILD_TESTS=OFF -Wno-dev 2>&1 |tee config.out

33
Programming / Re: Qt6 Development
« on: January 02, 2025, 05:47:24 pm »
Hi Paul,

I have build most from qt6-6.2.10
Only media gives error:

Can't locate File/Basename.pm in @INC (@INC contains: /@unixroot/usr/local/lib/perl5 /@unixroot/usr/local/share/perl5 /@unixroot/usr/lib/perl5/vendor
perl /@unixroot/usr/share/perl5/vendor_perl /@unixroot/usr/lib/perl5 /@unixroot/usr/share/perl5 .) at f:/Qt6-6.2.x/bin/syncqt.pl line 47.
BEGIN failed--compilation aborted at f:/Qt6-6.2.x/bin/syncqt.pl line 47.
CMake Error at F:/qt6-src/qt6-base-os2/cmake/QtModuleHelpers.cmake:313 (message):
  Failed to run syncqt, return code: 2
Call Stack (most recent call first):
  f:/Qt6-6.2.x/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:170 (qt_internal_add_module)
  src/multimediaquick/CMakeLists.txt:9 (qt_internal_add_qml_module)

Have perl installed also the basename.pm is there...

Any thoughts??




34
Programming / Re: Qt6 Development
« on: January 01, 2025, 05:14:59 pm »
Any reason you're targeting 6.3.2, not 6.2.10?
Hi Paul,

I had that one pull some time ago, will pull the 6.2.10

35
Programming / Re: Qt6 Development
« on: December 31, 2024, 11:27:14 am »
You didn't set beginlibpath to build\lib did you? So it can't find the qt6core.dll it needs.

Hi Paul,
I had a typo in dir name
So far so good for now, its on 37%
I had also probs when using cmake with --paralel i get not enough mem available.
Running now with make...

Ok finally its building to the end :)
Had to disable the example.
F:\qt6-6.2.x\bin>qmake6.exe --version
QMake version 3.1
Using Qt version 6.3.2 in F:/QT6-SRC/QT6-BASE-OS2/BUILD/lib

F:\qt6-6.2.x\bin>rcc -v
rcc 6.3.2

F:\qt6-6.2.x\bin>moc --version
moc 6.3.2

Wish you all the best for 2025...

36
Programming / Re: Qt6 Development
« on: December 31, 2024, 12:42:48 am »
Hi,

I get this after 26%
[ 26%] Running rcc for resource qpdf
make[2]: *** [src/gui/CMakeFiles/Gui.dir/build.make:86: src/gui/.rcc/qrc_qpdf.cpp] Segmentation fault (core dumped)
make[1]: *** [CMakeFiles/Makefile2:10239: src/gui/CMakeFiles/Gui.dir/all] Error 2
make: *** [Makefile:146: all] Error 2

37
Programming / Re: Qt6 Development
« on: December 30, 2024, 09:27:25 pm »
Hi Rich,

No dont see that so far, as cmake says it cannot find dbus-1

CMake Error in CMakeLists.txt:
  IMPORTED_IMPLIB not set for imported target "dbus-1" configuration
  "Release".
I have dbus-1 installed

I have all you're recommend set and i still have no idea why it dont find the dbus...

38
Programming / Re: Qt6 Development
« on: December 30, 2024, 06:33:48 pm »
My cmd file, based on what Paul recently recommended.
Code: [Select]
set BEGINLIBPATH=C:\work\qt6-os2\qt6-base-os2\build\lib
dash ../configure -prefix /qt6-6.2.x -release -no-opengl -system-sqlite -openssl-linked -no-pch -- -DQT_BUILD_EXAMPLES=ON -DQT_BUILD_TESTS=OFF 2>&1 | tee configure.log
cmake --build . --parallel 2>&1 | tee build.log
Adjust paths as needed.

Hi Dave,
You use qt6 or qt5 ?

I upload a qt5 file and a qt6 file

39
Programming / Re: Qt6 Development
« on: December 30, 2024, 03:36:18 pm »
Hi Paul and David,

I cannot get the base build, i get lots of errors.
Not remember what those are, as im not @ home.
Do you use a cmd or sh to get it build..
And are u use something special?


Kind regards, Tellie

40
Programming / Re: Qt6 Application Testing
« on: December 29, 2024, 05:34:45 pm »
Hihi

Will do asap with latest 6.2.10 from Paul

Wish all a happy and healthy 2025

Ok, i upload several zip file build with qt6 6.2.10

P.S I didn't test it all, so it can be that some don't run propely :)

41
Programming / Re: time during compiling
« on: December 22, 2024, 08:50:26 am »
Thankz all,
Will see what to use...
As i prefer to get the output in min/secs

Wish all a merry Xmas, and all the best for 2025

42
Programming / time during compiling
« on: December 20, 2024, 06:48:23 pm »
Hello all,

I was wondering if its possible to add a time to see howlong a build takes.
f.e
I have a build cmd like:

#!/bin/sh
NCORES=$(nproc)
MAXCORES=$(( NCORES - 5 ))
NJS=$(( MAXCORES > 1 ? MAXCORES : 1 ))
echo "Cleaning previous compiled files..."
rm -r qmake-qt6-gcc1420
echo "Make a new directory..."
mkdir qmake-qt6-gcc1420
cd qmake-qt6-gcc1420
echo "Creating the Makefile..."
qmake6 ../ -r -spec os2-g++ -r CONFIG+="release" 2>&1 |tee qmake.out
echo "Compiling the programma with $NJS threads ($NCORES cores)..."
make -j$NJS 2>&1 |tee make.out
echo "Done."

I like to see how long a compiling takes in time
So is it possible to add some strings in this cmd  ??
As i have no idea how to add or what string to use.
Could someone helps me out

With kind regards, TeLLie


43
Internet / Re: Dooble releases-Qt6
« on: November 29, 2024, 08:04:43 pm »
Tellie,

  You probably need to use 'Highmem' to get the DLL's to load into high memory... from a command prompt like this:

highmem -c qt6weben.dll

 Highmem is available from ANPM.

Regards,


Thankz David,

Totaly forgotten this :)

44
Internet / Re: Dooble releases-Qt6
« on: November 27, 2024, 08:07:06 pm »
Thanks Paul... I get a 404 'not found' on that link, but figured out it needs the'tmp' directory added so https://smedley.id.au/tmp/qt6weben-systemicu-20241125.zip does work. I'll give it a try later today...

LATER: Tried it and it works fine, but I don't see any difference - still get odd characters in the title bar every once in awhile I don't get with the QT5 version. Paul's website shows it ( https://os2ports.smedley.id.au )- there is a question mark '?' in the QT5 dooble tiitle bar the QT6 version shows 3 strange characters there...

Regards,

Hi Paul,
When i copy those files to my hd and try to run dooble, i get a not enough mem, when i use the old files all works...

Any idea...

45
Programming / Re: harfbuzz (TeX Live)
« on: October 17, 2024, 06:49:22 pm »
Hi Mentore

Iirc Has Ko a port from meson

Just wonder did you port Harfbuzz static or shared ?

Greetz Tellie

Pages: 1 2 [3] 4 5 ... 19