pantry/projects/tea.xyz/gx/cc/package.yml
Max Howell 81e7a5e16f
pkgx
2023-10-01 14:44:42 -04:00

62 lines
1.1 KiB
YAML

distributable: ~
# FIXME we want the c version eg. c99
# or should that be some kind of option? so you specify you want a cc that support c99
versions:
- 0.1.7
dependencies:
linux:
llvm.org: '*'
runtime:
env:
linux/x86-64:
LDFLAGS: $LDFLAGS -pie
CFLAGS: $CFLAGS -fPIC
CXXFLAGS: $CXXFLAGS -fPIC
build:
working-directory:
${{prefix}}/bin
script: |
if test {{ hw.platform }} = darwin; then
cp "$SRCROOT"/props/ld .
cp "$SRCROOT"/props/cc.rb cc
else
ln -s "$LLVM"/clang cc
ln -s "$LLVM"/lld ld
ln -s "$LLVM"/clang-cpp cpp
for x in ar as strip objcopy nm objdump ranlib readelf strings; do
ln -sf "$LLVM"/llvm-$x $x
done
fi
for x in clang gcc clang++ c++ g++; do
ln -s cc $x
done
for x in lld-link lld ld64.lld; do
ln -s ld $x
done
# dunno why we gotta do this, but we do
chmod 777 *
env:
LLVM: ../../../../../llvm.org/v*/bin
test: |
cc --version
ld --help
provides:
- bin/c++
- bin/cc
- bin/clang
- bin/clang++
- bin/g++
- bin/gcc
- bin/ld
- bin/ld64.lld
- bin/lld
- bin/lld-link