mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-06-13 08:52:42 +00:00
32 lines
412 B
Bash
32 lines
412 B
Bash
#! /bin/sh -e
|
|
|
|
prio=10
|
|
|
|
update-alternatives --quiet \
|
|
--install /usr/bin/c++ \
|
|
c++ \
|
|
/usr/bin/clang++ \
|
|
$prio
|
|
|
|
update-alternatives --quiet \
|
|
--install /usr/bin/cc \
|
|
cc \
|
|
/usr/bin/clang \
|
|
$prio
|
|
|
|
update-alternatives --quiet \
|
|
--install /usr/bin/c89 \
|
|
c89 \
|
|
/usr/bin/clang \
|
|
$prio
|
|
|
|
update-alternatives --quiet \
|
|
--install /usr/bin/c99 \
|
|
c99 \
|
|
/usr/bin/clang \
|
|
$prio
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|