in reply to Module Text::Autoformat not working; perlbrew not installing

ld: library not found for -lgcc_s.10.4

That seems pretty explicit. Either install the correct library or else amend the initial configuration to point to an already-installed compatible library.

Replies are listed 'Best First'.
Re^2: perlbrew not installing
by marek1703 (Acolyte) on Oct 26, 2015 at 14:28 UTC

    Thank you dear monks! This was a good help!
    My test script looks now like follows - and is working

    #!/usr/bin/perl use strict; use warnings; use Text::Autoformat; $/ = ''; my $messy = <DATA>; my $formatted = autoformat($messy, {all=>1}); print $formatted; __DATA__ 1. Analyze problem 3. Design algorithm 1. Code solution 5. Test 4. Ship

    I would like nevertheless install a newer Perl with perlbrew

    Could somebody help me with the linker problem? My Xcode is the newest version ...

    marek