saurik a year ago

My experience asking this question is that effectively no one understands how cross-compilation works (as is also seen here from the response involving nested virtualization)... which is really disappointing given that it causes even more chaos when people fail to understand that even deploying to their same architecture on Linux should be set up more similar to a cross-compiled build (to avoid any properties of the system bleeding into the resulting binary). As far as I can tell, people just think that compilers only can target the system they are on, and if they want to target other architectures, other operating systems, or even merely older systems, they have to run their build system on a machine equivalent to their eventual deployment.

  • DrillShopper a year ago

    I work for a healthcare company, and one of the things that we have to be able to do is reproduce our software for investigations. As a result, we build static cross-compilers pointing to a small system root extracted from the distribution we're building for but targeting the same architecture we're building on. In that way we can ensure that the host system dependencies are not embedded in the built result which means we can pull our compiler and system root out of archive and run it on practically any Linux system.

    We usually keep archives of the software releases (even ones that are really, REALLY old and not out in service for the most part except for refurbs of old product), but being able to rebuild them and more importantly build a fixed version targeting the OS it originally targeted is really nice.

    • nixosbestos a year ago

      Nix would handle this trivially.

      • DrillShopper a year ago

        Nix didn't exist when this software project started (nor did Linux for that matter).

        In the present company policy also requires us to use SLES unless we're reproducing an older build. They really want someone to scream at if SLES breaks.

  • pjmlp a year ago

    What to expect when many don't even understand how linkers work, and include files scripting style to avoid learning them?

    Installing a cross-platform targeting compiler toolchain is next level.

tliltocatl a year ago

Somewhat tangential, cross-compilation seems to have been frowned upon in Unix historically. A lots of things out there just assume HOST==TARGET.

relistan a year ago

Our workload took nearly 18 minutes to cross-compile on their AMD64 runners. It builds on the AArch64 runners in 4 minutes. (Whole container I mean)

  • justincormack a year ago

    Thats probably not a cross compile then, its an emulated compile. Cross compiling is basically the same speed.

    • relistan a year ago

      Sure you know what I meant. It’s an emulated compiler compiling natively. But the point is that building Aarch64 containers under emulation sucks and it doesn’t suck under a native build.

      • hdjdjdn a year ago

        But why would you do this instead of cross compiling in the first place?

[removed] a year ago
[deleted]
0x457 a year ago

I'm probably wrong, but I think this kind of cross-compilation requires a nested virtualization and GHA hosted runners don't support it.