!ayCRiZriCVtuCUpeLp:nixos.org

Nix Cross Compiling

560 Members
119 Servers

Load older messages


SenderMessageTime
1 Jan 2026
@artturin:matrix.orgArtturin
In reply to @zimward:zimward.moe
can someone explain to me why i get a gcc that targets x86_64-linux in a derivation from a stdenv that has riscv32-none-elf as its target?
$CC is that?
18:55:02
@artturin:matrix.orgArtturinReproducer?18:55:07
@zimward:zimward.moezimward like nix develop nixpkgs#legacyPackages.x86_64-linux.pkgsCross.riscv32-embedded.newlib-nano
> gcc --verbose
Es werden eingebaute Spezifikationen verwendet.
COLLECT_GCC=/nix/store/kzq78n13l8w24jn8bx4djj79k5j717f1-gcc-14.3.0/bin/gcc
COLLECT_LTO_WRAPPER=/nix/store/kzq78n13l8w24jn8bx4djj79k5j717f1-gcc-14.3.0/libexec/gcc/x86_64-unknown-linux-gnu/14.3.0/lto-wrapper
Ziel: x86_64-unknown-linux-gnu
Konfiguriert mit: ../gcc-14.3.0/configure --prefix=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gcc-14.3.0 --with-gmp-include=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gmp-6.3.0-dev/include --with-gmp-lib=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gmp-6.3.0/lib --with-mpfr-include=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-mpfr-4.2.2-dev/include --with-mpfr-lib=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-mpfr-4.2.2/lib --with-mpc=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libmpc-1.3.1 --with-native-system-header-dir=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-glibc-2.40-66-dev/include --with-build-sysroot=/ --with-gxx-include-dir=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-gcc-14.3.0/include/c++/14.3.0/ --program-prefix= --enable-lto --disable-libstdcxx-pch --without-included-gettext --with-system-zlib --enable-static --enable-languages=c,c++ --disable-multilib --enable-plugin --disable-libcc1 --with-isl=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-isl-0.20 --disable-bootstrap --enable-default-pie --build=x86_64-unknown-linux-gnu --host=x86_64-unknown-linux-gnu --target=x86_64-unknown-linux-gnu
Thread-Modell: posix
Unterstützte LTO-Kompressionsalgorithmen: zlib
gcc-Version 14.3.0 (GCC)
there is also the correct gcc in there with the target triplet prefix (and is set as the CC, but when i add cflags it tries to use the incorrect gcc)
19:01:33
@matthewcroughan:defenestrate.itmatthewcroughan changed their display name from matthewcroughan @ 39c3 (DECT 94667 or 97340 or 67192) to matthewcroughan.19:54:37
@artturin:matrix.orgArtturinhttps://github.com/NixOS/nixpkgs/blob/700a15863ef33cc39478ac9a2ae5a92b3f4ad25e/pkgs/by-name/ne/newlib/package.nix#L39-L4820:17:17
@artturin:matrix.orgArtturin gcc is always the for build gcc 20:25:07
@artturin:matrix.orgArtturinIt doesn't exist when cross-compiling without buildPackages.stdenv.cc in depsBuildBuild20:25:29
@debtquity:matrix.orgdebtquity joined the room.20:54:59
2 Jan 2026
@icurtis:matrix.org@icurtis:matrix.org left the room.20:26:41
5 Jan 2026
@bake.monorail:matrix.orgbake.monorail Alyssa Ross: any chance you can take another look to #458935? John Ericson made some other suggestions that have been implemented. 10:50:27
6 Jan 2026
@bake.monorail:matrix.orgbake.monorail Thanks <3 I'm so happy :) 17:49:19
9 Jan 2026
@alexfmpe:matrix.orgalexfmpe where do platform symbols like loongarch come from?
I hit symbol issues in libffi when trying to build cross-compiling GHC on several platforms
For instance, I'm getting https://github.com/libffi/libffi/blob/2263d6037f8ef6b8d5bef14117ad1a17c32a20b9/src/loongarch64/ffitarget.h#L66
which should mean __loongarch64 isn't defined, but loongarch is or the error on line 39 would trigger first
I see both of them in https://loongson.github.io/LoongArch-Documentation/LoongArch-toolchain-conventions-EN.html but don't know where they're supposed to come from
12:07:45
@alexfmpe:matrix.orgalexfmpe * where do platform symbols like __loongarch__ come from?
I hit symbol issues in libffi when trying to build cross-compiling GHC on several platforms
For instance, I'm getting https://github.com/libffi/libffi/blob/2263d6037f8ef6b8d5bef14117ad1a17c32a20b9/src/loongarch64/ffitarget.h#L66
which should mean __loongarch64 isn't defined, but __loongarch__ is or the error on line 39 would trigger first
I see both of them in https://loongson.github.io/LoongArch-Documentation/LoongArch-toolchain-conventions-EN.html but don't know where they're supposed to come from
12:08:15
@opna2608:matrix.orgPunathe compiler defines them based on the selected/configured target12:12:39
@opna2608:matrix.orgPunahttps://github.com/gcc-mirror/gcc/blob/9a2402ad31db7507cb63905a8d98ce81769d9835/gcc/config/loongarch/loongarch-c.cc#L50-L5612:13:18
@alexfmpe:matrix.orgalexfmpeso in this case GHC? or the c compiler?12:13:19
@opna2608:matrix.orgPunawell, whichever compiler is processing that file ig12:13:45
@alexfmpe:matrix.orgalexfmpehmm the actual failing command seems to be gcc12:15:39
@alexfmpe:matrix.orgalexfmpeoh wait a second it does hit the line 39 error12:37:06
@alexfmpe:matrix.orgalexfmpeboth errors show up actually12:37:19
@alexfmpe:matrix.orgalexfmpeso maybe ghc isn't configuring gcc properly for loongarch?12:37:33
11 Jan 2026
@ivank:matrix.orgivan joined the room.01:44:54
@lukas:matrix.landgraf.freeddns.orglukas joined the room.03:02:23
@9hp71n:matrix.orgghpzin changed their display name from ghpzin (moved to @ghpzin:envs.net) to ghpzin.15:04:40
@ghpzin:envs.net@ghpzin:envs.net left the room.16:21:10
12 Jan 2026
@grand_master_programmer:matrix.orgjimmie joined the room.08:05:53
@grand_master_programmer:matrix.orgjimmie set a profile picture.08:12:16
@grand_master_programmer:matrix.orgjimmie changed their display name from zigzen to jimmie.08:12:34
@jappie:jappie.devjappie joined the room.17:28:20
13 Jan 2026
@jopejoe1:matrix.orgjopejoe1 (4094@epvpn) changed their display name from jopejoe1 (4094@39c3) to jopejoe1 (4094@epvpn).08:24:56

Show newer messages


Back to Room ListRoom Version: 6