mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-16 03:30:23 -07:00
18 lines
469 B
Bash
Executable File
18 lines
469 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--release-channel=stable \
|
|
--disable-rpath \
|
|
--disable-docs \
|
|
--disable-codegen-tests \
|
|
--enable-vendor \
|
|
--llvm-root=/usr \
|
|
--build=x86_64-unknown-linux-musl \
|
|
--target=x86_64-unknown-linux-musl \
|
|
--set=target.x86_64-unknown-linux-musl.llvm-config=/usr/bin/llvm-config \
|
|
--set=target.x86_64-unknown-linux-musl.llvm-config=/usr/bin/llvm-config
|
|
|
|
make
|
|
DESTDIR="$1" ./x.py install -v
|