On Mon, Sep 13, 2021, 03:20 Paula Carboné <[email protected]> wrote:
> Hi guysss, is it possible to disable compiler checking while running > configure script? > I have tried with --disable-option-checking, --disable-libtool-lock and > --with-gnu-ld, but nothing seems to work and the output keeps displaying: > *configure: error: no acceptable C compiler found in $PATH* > (Obviously bc I have removed the gcc package) The point is, can the script > be run without gcc installed? How? > You are definitely going to need a C compiler to build the source. It doesn't have to be GCC, but it has to be something. The configure script is right to bail out when there is no C compiler present at all. It won't be able to run its own tests, let alone build the source. - Mike
