mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-04-03 01:07:03 +00:00
Robustify cross-compilation
This commit is contained in:
parent
0bec24e593
commit
a49df87704
@ -15,6 +15,10 @@ SPDX-FileCopyrightText: 2011-2020 Carles Fernandez-Prades <carles.fernandez@cttc
|
||||
- The software can now be built against the GNU Radio 3.9 API that uses C++11
|
||||
smart pointers instead of Boost smart pointers.
|
||||
|
||||
### Improvements in Portability:
|
||||
|
||||
- The software can now be cross-compiled on Petalinux environments.
|
||||
|
||||
### Improvements in Reproducibility:
|
||||
|
||||
- Improved reproducibility of the volk_gnsssdr library: Drop compile-time CPU
|
||||
|
@ -677,7 +677,9 @@ if(ENABLE_SYSTEM_TESTING)
|
||||
)
|
||||
add_system_test(position_test)
|
||||
if(NOT GNSSSIMULATOR_FOUND OR ENABLE_GNSS_SIM_INSTALL)
|
||||
add_dependencies(position_test gnss-sim)
|
||||
if(NOT CMAKE_CROSSCOMPILING)
|
||||
add_dependencies(position_test gnss-sim)
|
||||
endif()
|
||||
endif()
|
||||
else()
|
||||
# Avoid working with old executables if they were switched ON and then OFF
|
||||
|
Loading…
x
Reference in New Issue
Block a user