diff options
| author | Paulo Custodio <pauloscustodio@gmail.com> | 2021-11-03 11:07:35 +0000 |
|---|---|---|
| committer | Paulo Custodio <pauloscustodio@gmail.com> | 2021-11-03 11:07:35 +0000 |
| commit | da070373c4ff340135306b593a16d601daabc6ea (patch) | |
| tree | 4d94f9603d940a344300cdeb5682a684fae49c95 /challenge-001 | |
| parent | 87883da68b695f54a3bd4f108fc5c31784879dac (diff) | |
| download | perlweeklychallenge-club-da070373c4ff340135306b593a16d601daabc6ea.tar.gz perlweeklychallenge-club-da070373c4ff340135306b593a16d601daabc6ea.tar.bz2 perlweeklychallenge-club-da070373c4ff340135306b593a16d601daabc6ea.zip | |
Add Python solution to challenge 116
Diffstat (limited to 'challenge-001')
| -rw-r--r-- | challenge-001/paulo-custodio/test.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-001/paulo-custodio/test.pl b/challenge-001/paulo-custodio/test.pl index c8dc2b9f75..7efe038555 100644 --- a/challenge-001/paulo-custodio/test.pl +++ b/challenge-001/paulo-custodio/test.pl @@ -148,7 +148,7 @@ sub build { return "bf $prog_wo_ext.bf"; } if (/^c$/) { - run("gcc $prog -o $prog_wo_ext -lmpfr -lgmp") if (!-f $exe || -M $exe > -M $prog); + run("gcc $prog -o $prog_wo_ext -lm -lmpfr -lgmp") if (!-f $exe || -M $exe > -M $prog); return $exe; } if (/^cpp$/) { |
