From 234a6aafbd8cbc20021c0716fb46489ddcde1293 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Do=C4=9Fa=20Oru=C3=A7?= Date: Thu, 5 Sep 2024 07:04:40 +0300 Subject: [PATCH] Create script to install GCC-14 headers and Clang for Ubuntu --- scripts/linux_compiler_setup.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 scripts/linux_compiler_setup.sh diff --git a/scripts/linux_compiler_setup.sh b/scripts/linux_compiler_setup.sh new file mode 100644 index 00000000..c1fb2033 --- /dev/null +++ b/scripts/linux_compiler_setup.sh @@ -0,0 +1,7 @@ +sudo apt install cmake -y +sudo apt install gcc-14 -y +sudo apt install libstdc++-14-dev -y +sudo apt install clang -y +sudo update-alternatives --config cc +sudo update-alternatives --config c++ +clang -v \ No newline at end of file