Skip to content
Snippets Groups Projects
Commit 3026b12c authored by Reinhard Biegel's avatar Reinhard Biegel
Browse files

Merge branch 'remove-trailing-white-spaces' into 'develop'

fix(CI): Remove trailing white spaces and fix indent

See merge request !275
parents 753d562c 4a6bde3e
No related branches found
No related tags found
1 merge request!275fix(CI): Remove trailing white spaces and fix indent
Pipeline #72466 pending
################################################################################ ################################################################################
# Copyright (c) 2020-2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) # Copyright (c) 2020-2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
# 2020 HLRS, University of Stuttgart # 2020 HLRS, University of Stuttgart
# 2024 Volkswagen AG # 2024 Volkswagen AG
# #
# This program and the accompanying materials are made available under the # This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at # terms of the Eclipse Public License 2.0 which is available at
......
...@@ -131,17 +131,17 @@ else() ...@@ -131,17 +131,17 @@ else()
set(CMAKE_INSTALL_PREFIX "/openPASS" CACHE PATH "Destination directory") set(CMAKE_INSTALL_PREFIX "/openPASS" CACHE PATH "Destination directory")
add_compile_definitions(unix) add_compile_definitions(unix)
if(WITH_ADDRESS_SANITIZER OR WITH_MEMORY_SANITIZER) if(WITH_ADDRESS_SANITIZER OR WITH_MEMORY_SANITIZER)
if(WITH_ADDRESS_SANITIZER) if(WITH_ADDRESS_SANITIZER)
add_compile_options(-fsanitize=address -fno-omit-frame-pointer -fno-optimize-sibling-calls) add_compile_options(-fsanitize=address -fno-omit-frame-pointer -fno-optimize-sibling-calls)
add_link_options(-fsanitize=address) add_link_options(-fsanitize=address)
endif()
if(WITH_MEMORY_SANITIZER)
add_compile_options(-fsanitize=memory -fno-omit-frame-pointer -fno-optimize-sibling-calls)
add_link_options(-fsanitize=memory)
endif()
else()
add_link_options(LINKER:-z,defs) # fail during link time on undefined references (instead of runtime)
endif() endif()
if(WITH_MEMORY_SANITIZER)
add_compile_options(-fsanitize=memory -fno-omit-frame-pointer -fno-optimize-sibling-calls)
add_link_options(-fsanitize=memory)
endif()
else()
add_link_options(LINKER:-z,defs) # fail during link time on undefined references (instead of runtime)
endif()
option(OPENPASS_ADJUST_OUTPUT "Adjust output directory" OFF) option(OPENPASS_ADJUST_OUTPUT "Adjust output directory" OFF)
endif() endif()
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
openPASS Documentation openPASS Documentation
====================== ======================
The openPASS (Open Platform for Assessment of Safety Systems) tool is a developed framework for the simulation of interaction between traffic participants to evaluate and parametrize active safety systems. The openPASS (Open Platform for Assessment of Safety Systems) tool is a developed framework for the simulation of interaction between traffic participants to evaluate and parametrize active safety systems.
The simulation is based on a specific situation configuration and can contain several simulation runs, which differ due to random parameters. The simulation is based on a specific situation configuration and can contain several simulation runs, which differ due to random parameters.
The software suite of openPASS started as a set of stand-alone applications, which can be installed and configured individually. The software suite of openPASS started as a set of stand-alone applications, which can be installed and configured individually.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment