tie: -std=c89 for code written in 1993

fix clang build
This commit is contained in:
annalee
2024-05-07 06:00:28 +00:00
parent 9fb582619d
commit 5054f44fad
+1 -1
View File
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
};
buildPhase = ''
${stdenv.cc.targetPrefix}cc tie.c -o tie
${stdenv.cc.targetPrefix}cc -std=c89 tie.c -o tie
'';
installPhase = ''