Skip to content

Commit

Permalink
fix: minor fixes and improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
stergiotis committed Oct 19, 2024
1 parent 2a85f83 commit dde441a
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/install_clang.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
url="https://github.com/llvm/llvm-project/releases/download/llvmorg-18.1.8/clang+llvm-18.1.8-x86_64-linux-gnu-ubuntu-18.04.tar.xz"
url="https://github.com/llvm/llvm-project/releases/download/llvmorg-18.1.8/"
fn="clang+llvm-18.1.8-x86_64-linux-gnu-ubuntu-18.04"
mkdir -p "$HOME/Downloads"
cd "$HOME/Downloads"
Expand Down
37 changes: 37 additions & 0 deletions scripts/install_ubuntu_24.04.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
#!/bin/bash
echo "installing dependencies for ubuntu noble (24.04)"
if ! [ -x "$(command -v tar)" ]; then
sudo apt install -y tar
fi
if ! [ -x "$(command -v bzip2)" ]; then
sudo apt install -y bzip2
fi
if ! [ -x "$(command -v wget)" ]; then
sudo apt install -y wget
fi
if ! [ -x "$(command -v cmake)" ]; then
sudo apt install -y cmake
fi
if ! [ -x "$(command -v clang)" ]; then
sudo apt install -y clang
fi
if ! [ -x "$(command -v xsltproc)" ]; then
sudo apt install -y xsltproc
fi
# freetype
sudo apt install -y libfreetype-dev

# glfw
sudo apt install -y libglfw3-dev

# opengl
sudo apt install -y libgl-dev

#libc++
sudo apt install -y libc++-dev libc++abi-dev

#skia deps
sudo apt install -y clang libjpeg-dev libicu-dev libwebp-dev libfontconfig-dev

#clang (non-OS version) deps
sudo apt install libtinfo6

0 comments on commit dde441a

Please sign in to comment.