Files
nixpkgs/pkgs/by-name/ti/tinycc/package.nix
phibkro 9e4c67a55c tinycc: skip installCheck on darwin
The Hydra failure on x86_64-darwin (build 330314747) bails in
installCheckPhase with `sh: codesign: command not found`. Adding
`darwin.sigtool` to nativeBuildInputs gets past that but exposes
deeper test breakage:

  codesign_allocate: fatal error: file not in an order that can be
  processed (symbol table out of place): hello, vla_test, asm-c-connect
  tcc: error: undefined symbol '___va_arg'  (abitest-tcc.exe)

i.e. tcc's Mach-O output isn't in the layout codesign_allocate
expects, and abitest needs a __va_arg helper tcc doesn't provide on
x86_64-darwin. These are upstream tcc bugs about its DARWIN-OUTPUT
code generation; the tcc binary itself works fine (verified
`tcc -run hello.c` on macOS 15.6.1 Sequoia).

aarch64-darwin already disables doInstallCheck entirely for its own
atomic-helper issue. Extending the same exclusion to x86_64-darwin is
the consistent fix. The preInstallCheck that removed tests/tests2/{108,
114}* was a partial fix for the same shape — now subsumed.

Fixes https://hydra.nixos.org/build/330314747

Assisted-by: Claude Opus 4.7 <noreply@anthropic.com>
2026-08-11 00:34:56 +02:00

166 lines
4.5 KiB
Nix

{
lib,
copyPkgconfigItems,
fetchFromRepoOrCz,
makePkgconfigItem,
apple-sdk,
perl,
stdenv,
texinfo,
which,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "tcc";
version = "0.9.27-unstable-2025-01-06";
outputs = [
"dev"
"doc"
"info"
"lib"
"man"
"out"
];
src = fetchFromRepoOrCz {
repo = "tinycc";
rev = "f6385c05308f715bdd2c06336801193a21d69b50";
hash = "sha256-tO3N+NplYy8QUOC2N3x0CO5Ui75j9bQzLSZQF1HQyhY=";
};
nativeBuildInputs = [
copyPkgconfigItems
perl
texinfo
which
];
strictDeps = true;
pkgconfigItems =
let
libtcc-pcitem = {
name = "libtcc";
inherit (finalAttrs) version;
cflags = [ "-I${libtcc-pcitem.variables.includedir}" ];
libs = [
"-L${libtcc-pcitem.variables.libdir}"
"-Wl,--rpath ${libtcc-pcitem.variables.libdir}"
"-ltcc"
];
variables = {
prefix = "${placeholder "out"}";
includedir = "${placeholder "dev"}/include";
libdir = "${placeholder "lib"}/lib";
};
description = "Tiny C compiler backend";
};
in
[
(makePkgconfigItem libtcc-pcitem)
];
configureFlags = [
"--cc=$CC"
"--ar=$AR"
"--crtprefix=${lib.getLib stdenv.cc.libc}/lib"
"--sysincludepaths=${
lib.concatStringsSep ":" (
[
"{B}/include"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
"${apple-sdk.sdkroot}/usr/include"
]
++ lib.optionals (!stdenv.hostPlatform.isDarwin) [
"${lib.getDev stdenv.cc.libc}/include"
]
)
}"
# The first libpath will be the one in which tcc will look for libtcc1.a,
# which is need for its tests.
"--libpaths=$lib/lib/tcc:$lib/lib:${lib.getLib stdenv.cc.libc}/lib"
# build cross compilers
"--enable-cross"
]
++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [
# The bounds checker has an unresolved arm64 atomic helper on Darwin.
"--config-bcheck=no"
]
++ lib.optionals stdenv.hostPlatform.isMusl [
"--config-musl"
];
enableParallelBuilding = true;
preBuild = lib.optionalString (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) ''
# TCC cannot cross-compile x86 long double constants from aarch64-darwin.
makeFlagsArray+=("TCC_X=i386-win32 x86_64-win32 arm arm64 arm-wince c67 riscv64 arm64-osx")
'';
env.NIX_CFLAGS_COMPILE = toString [
"-Wno-error=implicit-int"
"-Wno-error=int-conversion"
];
# Test segfault for static build
doInstallCheck =
!stdenv.hostPlatform.isStatic
&& stdenv.buildPlatform.canExecute stdenv.hostPlatform
&& !stdenv.hostPlatform.isDarwin;
postPatch = ''
patchShebangs texi2pod.pl
'';
preConfigure =
let
# To avoid "malformed 32-bit x.y.z" error on mac when using clang
versionIsClean = version: builtins.match "^[0-9]\\.+[0-9]+\\.[0-9]+" version != null;
in
''
${
if stdenv.hostPlatform.isDarwin && !versionIsClean finalAttrs.version then
"echo 'not overwriting VERSION since it would upset ld'"
else
"echo ${finalAttrs.version} > VERSION"
}
configureFlagsArray+=("--elfinterp=$(< $NIX_CC/nix-support/dynamic-linker)")
'';
installCheckTarget = "test";
meta = {
homepage = "https://repo.or.cz/tinycc.git";
description = "Small, fast, and embeddable C compiler and interpreter";
longDescription = ''
TinyCC (aka TCC) is a small but hyper fast C compiler. Unlike other C
compilers, it is meant to be self-sufficient: you do not need an external
assembler or linker because TCC does that for you.
TCC compiles so fast that even for big projects Makefiles may not be
necessary.
TCC not only supports ANSI C, but also most of the new ISO C99 standard
and many GNU C extensions.
TCC can also be used to make C scripts, i.e. pieces of C source that you
run as a Perl or Python script. Compilation is so fast that your script
will be as fast as if it was an executable.
TCC can also automatically generate memory and bound checks while allowing
all C pointers operations. TCC can do these checks even if non patched
libraries are used.
With libtcc, you can use TCC as a backend for dynamic code generation.
'';
license = lib.licenses.lgpl21Only;
mainProgram = "tcc";
maintainers = with lib.maintainers; [
onemoresuza
];
platforms = lib.platforms.unix;
};
})
# TODO: self-compilation