in reply to Unable to compile perl

which version of clang do you have? do you have ...gcc_s...so file anywhere? where?

Replies are listed 'Best First'.
Re^2: Unable to compile perl
by Alessandro (Acolyte) on Nov 20, 2015 at 18:32 UTC
    The clang version is: "Apple LLVM version 6.1.0 (clang-602.0.49)".
    I have a gcc file in /usr/bin/gcc but can't find any gcc_s, at least "which gcc_s" doesn't return anything.

      which usually searches for (executable) commands based on $PATH.

      The other related command is locate, which I have given up on due to it consulting stale data, skipping some paths, different implementations, poorly implemented wrapper around it (the worst). When I need to locate a file, I reach for find. locate can die already for all I care.

      If gcc is in /use/bin, try searching in /usr/lib: find /usr/lib -name '*gcc_s* (feel free to adjust).

        gcc_s definitely is not on my machine, at least I can't find it. I really don't know what to do from here.