Some build targets fail because of cached Qt Positioning dependency status #9728

Open
opened 2024-11-23 19:44:27 +00:00 by pastk · 11 comments
Member

To reproduce:

  1. Build the desktop target i.e. tools/unix/build_omim.sh -d desktop (there will be Building with Qt Positioning in the log)
  2. Build some test target e.g. tools/unix/build_omim.sh -d routing_common_tests
...
Building without Qt Positioning
...
[10/17] Building CXX object platform/CMakeFiles/platform.dir/Unity/unity_0_cxx.cxx.o
FAILED: platform/CMakeFiles/platform.dir/Unity/unity_0_cxx.cxx.o 
/usr/bin/ccache /usr/bin/ccache /usr/bin/c++ -DDEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DUSE_FILE32API -I/home/pastk/dev/OM/omim-build-debug/platform/platform_autogen/include -I/home/pastk/dev/OM/organicmaps -I/home/pastk/dev/OM/omim-build-debug/3party/gflags/include -I/home/pastk/dev/OM/organicmaps/3party/utfcpp/source -I/home/pastk/dev/OM/organicmaps/3party/expat/expat/lib -I/home/pastk/dev/OM/omim-build-debug/3party/expat/expat -I/home/pastk/dev/OM/omim-build-debug/3party/jansson/jansson/include -isystem /home/pastk/dev/OM/organicmaps/3party/boost -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtNetwork -g -std=c++20 -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -fdiagnostics-color=always -ffast-math -fno-omit-frame-pointer -Wall -Wextra -Wpedantic -Wno-unused-parameter -fPIC -MD -MT platform/CMakeFiles/platform.dir/Unity/unity_0_cxx.cxx.o -MF platform/CMakeFiles/platform.dir/Unity/unity_0_cxx.cxx.o.d -o platform/CMakeFiles/platform.dir/Unity/unity_0_cxx.cxx.o -c /home/pastk/dev/OM/omim-build-debug/platform/CMakeFiles/platform.dir/Unity/unity_0_cxx.cxx
In file included from /home/pastk/dev/OM/omim-build-debug/platform/platform_autogen/EWIEGA46WW/moc_qt_location_service.cpp:10,
                 from /home/pastk/dev/OM/omim-build-debug/platform/platform_autogen/mocs_compilation.cpp:3,
                 from /home/pastk/dev/OM/omim-build-debug/platform/CMakeFiles/platform.dir/Unity/unity_0_cxx.cxx:4:
/home/pastk/dev/OM/omim-build-debug/platform/platform_autogen/EWIEGA46WW/../../../../organicmaps/platform/qt_location_service.hpp:5:10: fatal error: QGeoPositionInfoSource: No such file or directory
    5 | #include <QGeoPositionInfoSource>
      |          ^~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
ninja: build stopped: subcommand failed.

I have to rm -r ../omim-build-debug/CMakeFiles/ to make it reset.

@Ferenc- could you take a look please?

cmake 3.28.3 on Lubuntu 24.04

To reproduce: 1. Build the desktop target i.e. `tools/unix/build_omim.sh -d desktop` (there will be `Building with Qt Positioning` in the log) 2. Build some test target e.g. `tools/unix/build_omim.sh -d routing_common_tests` ``` ... Building without Qt Positioning ... [10/17] Building CXX object platform/CMakeFiles/platform.dir/Unity/unity_0_cxx.cxx.o FAILED: platform/CMakeFiles/platform.dir/Unity/unity_0_cxx.cxx.o /usr/bin/ccache /usr/bin/ccache /usr/bin/c++ -DDEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DUSE_FILE32API -I/home/pastk/dev/OM/omim-build-debug/platform/platform_autogen/include -I/home/pastk/dev/OM/organicmaps -I/home/pastk/dev/OM/omim-build-debug/3party/gflags/include -I/home/pastk/dev/OM/organicmaps/3party/utfcpp/source -I/home/pastk/dev/OM/organicmaps/3party/expat/expat/lib -I/home/pastk/dev/OM/omim-build-debug/3party/expat/expat -I/home/pastk/dev/OM/omim-build-debug/3party/jansson/jansson/include -isystem /home/pastk/dev/OM/organicmaps/3party/boost -isystem /usr/include/x86_64-linux-gnu/qt6/QtCore -isystem /usr/include/x86_64-linux-gnu/qt6 -isystem /usr/lib/x86_64-linux-gnu/qt6/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt6/QtNetwork -g -std=c++20 -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -fdiagnostics-color=always -ffast-math -fno-omit-frame-pointer -Wall -Wextra -Wpedantic -Wno-unused-parameter -fPIC -MD -MT platform/CMakeFiles/platform.dir/Unity/unity_0_cxx.cxx.o -MF platform/CMakeFiles/platform.dir/Unity/unity_0_cxx.cxx.o.d -o platform/CMakeFiles/platform.dir/Unity/unity_0_cxx.cxx.o -c /home/pastk/dev/OM/omim-build-debug/platform/CMakeFiles/platform.dir/Unity/unity_0_cxx.cxx In file included from /home/pastk/dev/OM/omim-build-debug/platform/platform_autogen/EWIEGA46WW/moc_qt_location_service.cpp:10, from /home/pastk/dev/OM/omim-build-debug/platform/platform_autogen/mocs_compilation.cpp:3, from /home/pastk/dev/OM/omim-build-debug/platform/CMakeFiles/platform.dir/Unity/unity_0_cxx.cxx:4: /home/pastk/dev/OM/omim-build-debug/platform/platform_autogen/EWIEGA46WW/../../../../organicmaps/platform/qt_location_service.hpp:5:10: fatal error: QGeoPositionInfoSource: No such file or directory 5 | #include <QGeoPositionInfoSource> | ^~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. ninja: build stopped: subcommand failed. ``` I have to `rm -r ../omim-build-debug/CMakeFiles/` to make it reset. ` @Ferenc-` could you take a look please? cmake 3.28.3 on Lubuntu 24.04
Ferenc commented 2024-11-24 02:22:12 +00:00 (Migrated from github.com)

mentioned in merge request !9731

mentioned in merge request !9731
biodranik commented 2024-11-24 19:05:38 +00:00 (Migrated from github.com)
  1. It works on older cmake 3.22.1.
  2. Passing -c key to build_omim.sh (e.g. -cd) should help with the build error.
  3. A proper fix should always have positioning accessible when platform is built on Linux, e.g. to be unit-tested.
1. It works on older cmake 3.22.1. 2. Passing `-c` key to `build_omim.sh` (e.g. `-cd`) should help with the build error. 3. A proper fix should always have positioning accessible when platform is built on Linux, e.g. to be unit-tested.
Author
Member
2. Passing `-c` key to `build_omim.sh` (e.g. `-cd`) should help with the build error.

Having to re-build is not a good workaround..

> 2. Passing `-c` key to `build_omim.sh` (e.g. `-cd`) should help with the build error. Having to re-build is not a good workaround..
Ferenc commented 2024-11-25 09:54:23 +00:00 (Migrated from github.com)

A proper fix should always have positioning accessible when platform is built on Linux, e.g. to be unit-tested.

@biodranik If you give me the green light, then I would very gladly turn qt positioning to always on. I believe the whole reason for the opt out was because there were some obscure build systems somewhere, which didn't have qt-positioning. I believe that was discussed on TG and also reported here.
Let me know if I may proceed.

> A proper fix should always have positioning accessible when platform is built on Linux, e.g. to be unit-tested. ` @biodranik` If you give me the green light, then I would very gladly turn qt positioning to always on. I believe the whole reason for the opt out was because there were some obscure build systems somewhere, which didn't have qt-positioning. I believe that was discussed on TG and also reported [here](https://git.omaps.dev/organicmaps/organicmaps/pulls/5823#issuecomment-1722211350). Let me know if I may proceed.
Ferenc commented 2024-11-28 16:44:06 +00:00 (Migrated from github.com)

@vng If I remember correctly it was you who hit this last time. Is the above proposal OK from your perspective?

`@vng` If I remember correctly it was you who hit this last time. Is the above proposal OK from your perspective?
vng commented 2024-11-28 19:04:22 +00:00 (Migrated from github.com)

Honestly, I don't have a clue here.

  • The initial problem is when building "routing_common_tests" or "desktop"
  • Your proposal is to "turn qt positioning to always on"

Why do we need any QT positioning (and the QT itself) in "routing_common_tests" ?

Honestly, I don't have a clue here. - The initial problem is when building "routing_common_tests" or "desktop" - Your proposal is to "turn qt positioning to always on" Why do we need any QT positioning (and the QT itself) in "routing_common_tests" ?
Ferenc commented 2024-12-01 16:37:00 +00:00 (Migrated from github.com)

Why do we need any QT positioning (and the QT itself) in "routing_common_tests" ?

routing_common_tests link routing_common which links platform, and on Linux that is Qt dependent anyway, regardless of positioning, it uses QObject, QNetworkRequest etc.

> Why do we need any QT positioning (and the QT itself) in "routing_common_tests" ? `routing_common_tests` link `routing_common` which links `platform`, and on Linux that is Qt dependent anyway, regardless of positioning, it uses `QObject`, `QNetworkRequest` etc.
Ferenc commented 2024-12-01 17:07:39 +00:00 (Migrated from github.com)

An alternative that I am investigating is to drop the linking of platform from routing_common as it is apparently not really necessary.

An alternative that I am investigating is to drop the linking of `platform` from `routing_common` as it is apparently not really necessary.
biodranik commented 2024-12-21 14:30:13 +00:00 (Migrated from github.com)

A better alternative could be to make a separate platform/location library, or make this code header-only.

A better alternative could be to make a separate platform/location library, or make this code header-only.
Ferenc commented 2025-01-01 04:26:11 +00:00 (Migrated from github.com)

mentioned in merge request !9981

mentioned in merge request !9981
Author
Member

mentioned in merge request !10052

mentioned in merge request !10052
Sign in to join this conversation.
No milestone
No project
No assignees
2 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: organicmaps/organicmaps#9728
No description provided.