[tools] Fix the use of cached command-line variables in build_omim.sh #8710

Merged
Tmpod merged 2 commits from fix/build_omim.sh-cached-variables into master 2024-07-26 14:25:39 +00:00
Tmpod commented 2024-07-15 16:27:57 +00:00 (Migrated from github.com)

Variables declared only through the command-line, such as BUILD_STANDALONE, assume their cached values (visible in CMakeCache.txt files) whenever they are not defined. This caused the build script to run in standalone mode even when you didn't want it to, as long as you passed the flag once before.
BUILD_DESIGNER didn't have the same problem because it is declared in the root CMakeList.txt and defaults to OFF. Should we also define the standalone variable there?

I also used this PR to extend our .gitignore files with more autogenerated stuff, mostly from CMake.

Variables declared only through the command-line, such as `BUILD_STANDALONE`, assume their cached values (visible in CMakeCache.txt files) whenever they are not defined. This caused the build script to run in standalone mode even when you didn't want it to, as long as you passed the flag once before. `BUILD_DESIGNER` didn't have the same problem because it is declared in the root `CMakeList.txt` and defaults to OFF. Should we also define the standalone variable there? I also used this PR to extend our `.gitignore` files with more autogenerated stuff, mostly from CMake.
biodranik (Migrated from github.com) reviewed 2024-07-15 16:50:36 +00:00
biodranik (Migrated from github.com) commented 2024-07-15 16:43:12 +00:00

tools/shaders_compiler is a valid directory. Why do you need this line in .gitignore?

tools/shaders_compiler is a valid directory. Why do you need this line in .gitignore?
@ -146,6 +146,7 @@ iphone/Maps/app.omaps/
biodranik (Migrated from github.com) commented 2024-07-15 16:45:51 +00:00

Looks like the cmake is not used properly. All temporary files should be created in a different directory, not in the source directory. E.g.:

cd ..
mkdir omim-build-debug
cd omim-build-debug
cmake -DCMAKE_BUILD_TYPE=Debug -GNinja ../organicmaps/
ninja [optional_target]
Looks like the cmake is not used properly. All temporary files should be created in a different directory, not in the source directory. E.g.: ```bash cd .. mkdir omim-build-debug cd omim-build-debug cmake -DCMAKE_BUILD_TYPE=Debug -GNinja ../organicmaps/ ninja [optional_target] ```
biodranik (Migrated from github.com) commented 2024-07-15 16:46:14 +00:00

All these lines should not be needed if cmake is used properly from a different directory.

All these lines should not be needed if cmake is used properly from a different directory.
@ -22,3 +22,5 @@ local.properties
lint.xml
.gradletasknamecache
# Generated by Eclipse and JDTLS
biodranik (Migrated from github.com) commented 2024-07-15 16:46:34 +00:00

Which app creates this folder?

Which app creates this folder?
biodranik (Migrated from github.com) commented 2024-07-15 16:50:33 +00:00
  1. Could it be a one-liner?
  2. 4 spaces indent for the same command is clearer.
1. Could it be a one-liner? 2. 4 spaces indent for the same command is clearer.
Tmpod (Migrated from github.com) reviewed 2024-07-15 16:57:29 +00:00
@ -22,3 +22,5 @@ local.properties
lint.xml
.gradletasknamecache
# Generated by Eclipse and JDTLS
Tmpod (Migrated from github.com) commented 2024-07-15 16:57:28 +00:00

This appeared back when I was working on my PR with an Android UI fix. Don't know exactly what caused it, but I assume it was some gradle build step?

This appeared back when I was working on my PR with an Android UI fix. Don't know exactly what caused it, but I assume it was some gradle build step?
Tmpod (Migrated from github.com) reviewed 2024-07-15 16:59:09 +00:00
@ -146,6 +146,7 @@ iphone/Maps/app.omaps/
Tmpod (Migrated from github.com) commented 2024-07-15 16:59:09 +00:00

Right, I must have messed it up when I was trying to understand the macdeployqt issue, but shouldn't we ignore those anyway? Or is it used for important files?

Right, I must have messed it up when I was trying to understand the macdeployqt issue, but shouldn't we ignore those anyway? Or is it used for important files?
Tmpod (Migrated from github.com) reviewed 2024-07-15 17:01:32 +00:00
Tmpod (Migrated from github.com) commented 2024-07-15 17:01:31 +00:00
  1. I suppose it could, but it felt quite a long line (>100 chars long). The other comparably long line is one of the help ones.
  2. Noted!
1. I suppose it could, but it felt quite a long line (>100 chars long). The other comparably long line is one of the help ones. 2. Noted!
Tmpod (Migrated from github.com) reviewed 2024-07-15 17:03:29 +00:00
Tmpod (Migrated from github.com) commented 2024-07-15 17:03:29 +00:00

Shoot, I missed that! I most likely got that directory from not building on another directory, like the rest.

Shoot, I missed that! I most likely got that directory from not building on another directory, like the rest.
biodranik (Migrated from github.com) reviewed 2024-07-15 17:24:45 +00:00
@ -22,3 +22,5 @@ local.properties
lint.xml
.gradletasknamecache
# Generated by Eclipse and JDTLS
biodranik (Migrated from github.com) commented 2024-07-15 17:24:45 +00:00

What's inside?

What's inside?
biodranik (Migrated from github.com) reviewed 2024-07-15 17:25:32 +00:00
biodranik (Migrated from github.com) commented 2024-07-15 17:25:32 +00:00

We're ok with 120 chars per line. It fits nicely into all modern monitors and the Github review window.

We're ok with 120 chars per line. It fits nicely into all modern monitors and the Github review window.
Tmpod (Migrated from github.com) reviewed 2024-07-15 17:28:40 +00:00
@ -22,3 +22,5 @@ local.properties
lint.xml
.gradletasknamecache
# Generated by Eclipse and JDTLS
Tmpod (Migrated from github.com) commented 2024-07-15 17:28:39 +00:00

Seems to be some preference files related to Eclipse (which I never used) and JDTLS (Eclipse's Java language server, which I use in my editor). We should probably keep it?

Seems to be some preference files related to Eclipse (which I never used) and [JDTLS](https://github.com/eclipse-jdtls/eclipse.jdt.ls) (Eclipse's Java language server, which I use in my editor). We should probably keep it?
Tmpod (Migrated from github.com) reviewed 2024-07-15 17:29:03 +00:00
Tmpod (Migrated from github.com) commented 2024-07-15 17:29:02 +00:00

Ah alright, will collapse into one line then.

Ah alright, will collapse into one line then.
biodranik (Migrated from github.com) reviewed 2024-07-15 18:00:15 +00:00
@ -22,3 +22,5 @@ local.properties
lint.xml
.gradletasknamecache
# Generated by Eclipse and JDTLS
biodranik (Migrated from github.com) commented 2024-07-15 18:00:15 +00:00

Yes, please add a comment why it's needed.

Yes, please add a comment why it's needed.
biodranik (Migrated from github.com) reviewed 2024-07-15 18:00:42 +00:00
@ -146,6 +146,7 @@ iphone/Maps/app.omaps/
biodranik (Migrated from github.com) commented 2024-07-15 18:00:42 +00:00

Please remove them, using cmake in the same dir as the source is an anti-pattern.

Please remove them, using cmake in the same dir as the source is an anti-pattern.
biodranik (Migrated from github.com) approved these changes 2024-07-26 14:25:26 +00:00
biodranik (Migrated from github.com) left a comment

Thanks!

Thanks!
This repo is archived. You cannot comment on pull requests.
No reviewers
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
1 participant
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-tmp#8710
No description provided.