File tree Expand file tree Collapse file tree 5 files changed +24
-7
lines changed Expand file tree Collapse file tree 5 files changed +24
-7
lines changed Original file line number Diff line number Diff line change @@ -64,11 +64,11 @@ if [ "$(uname)" == "Darwin" ]; then
64
64
export CXX=" $( brew --prefix) /opt/llvm/bin/clang++"
65
65
else
66
66
if $gcc ; then
67
- export CC=" gcc-8 "
68
- export CXX=" g++-8 "
67
+ export CC=" gcc-12 "
68
+ export CXX=" g++-12 "
69
69
else
70
- export CC=" clang-8 "
71
- export CXX=" clang++-8 "
70
+ export CC=" clang-12 "
71
+ export CXX=" clang++-12 "
72
72
fi
73
73
fi
74
74
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ macro(CommonSetup)
59
59
if (${CMAKE_CXX_COMPILER_ID} MATCHES "Clang" )
60
60
set (CMAKE_CXX_FLAGS "-stdlib=libc++ -Wno-documentation -Wno-unknown-warning-option ${CMAKE_CXX_FLAGS} " )
61
61
find_package (LLVM REQUIRED CONFIG )
62
- set (CXX_EXP_LIB "-L${LLVM_LIBRARY_DIRS} -lc++fs - ferror-limit=10" )
62
+ set (CXX_EXP_LIB "-L${LLVM_LIBRARY_DIRS} -ferror-limit=10" )
63
63
else ()
64
64
set (CXX_EXP_LIB "-lstdc++fs -fmax-errors=10 -Wnoexcept -Wstrict-null-sentinel" )
65
65
endif ()
Original file line number Diff line number Diff line change
1
+ # Basic Dockerfile for testing compilation in Linux
2
+ FROM ubuntu:20.04
3
+
4
+ ENV TZ=America/Indiana/Indianapolis
5
+
6
+ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections && \
7
+ ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
8
+
9
+ RUN apt update && \
10
+ apt-get install -y \
11
+ git \
12
+ vim \
13
+ sudo
14
+
15
+ WORKDIR /root/workspace
16
+
17
+ CMD [ "/bin/bash" ]
Original file line number Diff line number Diff line change 1
1
site_name : AirSim
2
2
site_dir : build_docs
3
3
repo_url : https://github.com/microsoft/airsim
4
- site_description : ' Open source simulator based on Unreal Engine for autonomous vehicles from Microsoft AI & Research '
4
+ site_description : ' Open source simulator based on Unreal Engine for autonomous vehicles from Codex Labs '
5
5
6
6
markdown_extensions :
7
7
- toc :
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ else #linux
60
60
wget -O - http://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
61
61
sudo apt-get update
62
62
fi
63
- sudo apt-get install -y clang-8 clang++-8 libc++-8 -dev libc++abi-8 -dev
63
+ sudo apt-get install -y clang-12 clang++-12 libc++-12 -dev libc++abi-12 -dev
64
64
fi
65
65
66
66
if ! which cmake; then
You can’t perform that action at this time.
0 commit comments