2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 14:02:27 +00:00

Merge branch 'master' of github.com:dylanaraps/kiss-experiment

This commit is contained in:
Dylan Araps 2019-06-28 21:14:35 +03:00
commit 775829352d
4 changed files with 7 additions and 0 deletions

View File

@ -41,3 +41,6 @@ rm -rf "$1/usr/share/info"
# Some legacy programs will expect cc
ln -s gcc "$1/usr/bin/cc"
# POSIX compliance.
install -Dm755 ../c99 "$1/usr/bin/c99"

View File

@ -1 +1,2 @@
64baadfe6cc0f4947a84cb12d7f0dfaf45bb58b7e92461639596c21e02d97d2c gcc-8.3.0.tar.xz
765614b3396d70bca3fa0ae4a813632486c6dca320e2bd13c8c39dca52be4a4c c99

2
core/gcc/files/c99 Normal file
View File

@ -0,0 +1,2 @@
#!/bin/sh
exec cc -std=c99 "$@"

View File

@ -1 +1,2 @@
https://gcc.gnu.org/pub/gcc/releases/gcc-8.3.0/gcc-8.3.0.tar.xz gcc
files/c99