pantry/projects/tea.xyz/gx/cc/package.yml
Jacob Heider a3a0ce82c8
update(cc)
unpin LLVM14
2023-06-26 16:14:26 -04:00

64 lines
1.2 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: '*'
darwin:
apple.com/xcode/clt: '*'
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