Adaptive AUTOSAR is a simulated Adaptive Platform enviroment over Linux defined by AUTOSAR. The goal of this project is to implement the interfaces defined by the standard for educational purposes. For more information, please refer to the project Wiki.
It will be tried to use minimum number of dependencies as much as possible. The current dependencies are as follows:
- Cpp Standard: 14
- Cmake mimimum version: 3.14
- Compiler:
- GCC C/C++ Compiler (x86-64 Linux GNU): 9.3.0; or
- Clang C/C++ Compiler (x86-64 PC Linux GNU): 10.0.0
- Google Test: v1.11.0
- Async BSD Socket Lib (in-house C++ libary)
- OBD-II Emulator (in-house C++ emulator)
- GCC:
cmake -DCMAKE_BUILD_TYPE:STRING=Debug -DCMAKE_C_COMPILER:FILEPATH=/usr/bin/x86_64-linux-gnu-gcc-9 -DCMAKE_CXX_COMPILER:FILEPATH=/usr/bin/x86_64-linux-gnu-g++-9 -S . -B build
- Clang:
cmake -DCMAKE_BUILD_TYPE:STRING=Debug -DCMAKE_C_COMPILER:FILEPATH=/usr/bin/clang-10 -DCMAKE_CXX_COMPILER:FILEPATH=/usr/bin/clang++-10 -S . -B build
cmake --build build
cd build && ctest
Please refer to the project GitHub pages powered by Doxygen.
Please refer to the contributing page.