본문 바로가기

OS/Linux

[Ubuntu] Clang Installation

반응형
# wget https://apt.llvm.org/llvm.sh
# chmod +x llvm.sh
# sudo ./llvm.sh 16 all
# sudo vi /etc/profile.d/llvm.sh
export LLVM_HOME=/lib/llvm-16
export PATH=$PATH:$LLVM_HOME/bin
저장

# source /etc/profile.d/llvm.sh

 

참고: https://apt.llvm.org/

 

LLVM Debian/Ubuntu packages

The goal is to provide Debian and Ubuntu nightly packages ready to be installed with minimal impact on the distribution. Packages are available for amd64, i386 (except for recent Ubuntu), s390x and arm64 (aka aarch64). This for both the stable, qualificati

apt.llvm.org

 

반응형

'OS > Linux' 카테고리의 다른 글

[Ubuntu] Server Desktop(GUI) Installation  (0) 2024.03.27
[Ubuntu] DB Browser for SQLite Installation  (0) 2024.02.24
[RHEL] OS Version 확인  (0) 2023.02.16
[Ubuntu] Intel VGA Driver Installation  (0) 2023.02.10
[Ubuntu] OS Version 확인  (0) 2022.10.31