Satadru Pramanik, DO, MPH, MEng

Results 766 comments of Satadru Pramanik, DO, MPH, MEng

Now I get this error: ``` configure:3968: checking whether the C compiler works configure:3990: clang -Wno-unused-command-line-argument -Wno-ignored-optimization-argument -O2 -pipe -flto -ffat-lto-objects -fPIC -fuse-ld=mold -flto conftest.c >&5 mold: error: undefined symbol:...

``` mold --version mold 1.2.1 (eae062f815674cb81b02c9a188cd59292fd97fcf; compatible with GNU ld) ```

> Is there any way to run the docker container with the `--privileged` flag? I generally want to avoid adding that flag. Does that solve the issue for you? Seems...

These lines ``` docker pull tonistiigi/binfmt docker run --privileged --rm tonistiigi/binfmt --install all ``` Are only used to install binfmt support. You can skip those if you are on a...

``` crew whatprovides /usr/local/lib/crti.o glibc: /usr/local/lib/crti.o ``` That's from the glibc 2.23 which comes with these old systems. Is there a way to work around this issue since gold linker...

(This is with gcc 11 built with support for mold as per our package build file here: https://github.com/skycocker/chromebrew/blob/master/packages/gcc11.rb )

That files looks like it is a temp file which gets deleted. ``` chronos@cheekon-i686 /usr/local/tmp $ cat conftest.c /* confdefs.h */ #define PACKAGE_NAME "" #define PACKAGE_TARNAME "" #define PACKAGE_VERSION ""...

If you want to replicate that on your system using docker: ``` #!/bin/bash docker pull satmandu/crewbuild:alex-i686.m58 docker pull tonistiigi/binfmt docker run --privileged --rm tonistiigi/binfmt --install all docker run --platform linux/386...

What version of the cross-compiler are you using on your Ubuntu machine?