ryan

Results 11 comments of ryan

Tested on Linux - Alpine, CentOS 7, and a custom GCC+musl-based build environment in Docker with bonsai linux bsd-headers (https://github.com/bonsai-linux/bsd-headers).

@mitchweaver - bonsai bsd-headers are working better than libbsd for me ;)

OpenSSL builds fine with musl, including with compilers produced by musl-cross-make. This: ``` ar: creating archive apps/libapps.a warning: /Library/Developer/CommandLineTools/usr/bin/ranlib: warning for library: apps/libapps.a the table of contents is empty (no...

Would you happen to be running Docker, LXC, libvirt, etc. that manages interfaces? I'm struggling with a few nodes that are seeing a lot of **"Refusing to handshake with myself"**...

`.la` files are generally not needed on modern Linux systems, and in some cases can cause linking issues. See: - https://www.linuxfromscratch.org/blfs/view/svn/introduction/la-files.html For musl and other sufficiently low-level libraries, it should...

Still have something broken with your config: ``` 2022-10-07T13:47:41.6264418Z make: *** No rule to make target 'linux-5.15.44', needed by 'all'. Stop. ``` Remove the `LINUX_VER` config setting and go with...

`make install` works fine. Do you have `OUTPUT=/path/to/install/dir` set either via an argument to `make` or in `config.mak`?

I don't speak for anyone else, but I suggest: use WSL. You'll be chasing down brokenness with cl.exe/link.exe/etc. for a long while otherwise. Building GCC with MSVC at all is...

The most compatible would be using WSL. The fact that you got anything to build at all is surprising.

Easiest way to get everything you need is to run `make extract_all TARGET=... ; make clean` and tar up the **sources/** directory, then untar during your build pipeline. The file...