Re: [arch-general] Perl Help?

2017-07-06 Thread Hunter Jozwiak via arch-general
On Sat, 2017-06-24 at 11:51 -0400, Jude DaShiell wrote: > What were all packages you reinstalled after deleting > /usr/lib/perl5/ > and /usr/share/perl5/? > > On Fri, 16 Jun 2017, Hunter Jozwiak via arch-general wrote: > > > Date: Fri, 16 Jun 2017 10:20:42 > > From: Hunter Jozwiak via arch-gener

[arch-general] [PATCH]:[Clang] Add -fno-plt, -fplt to ignored flags

2017-07-06 Thread Jordan Glover via arch-general
In GCC there is a -fno-plt flag not implemented in Clang which results in compilation failure: clang-4.0: error: unknown argument: '-fno-plt' Proposed patch adds -fno-plt and -fplt to existing ignored flags list making it compatible with gcc for package building. You can see more info about tho

Re: [arch-general] Changing compilation flags

2017-07-06 Thread Jordan Glover via arch-general
I just looked into it and created simple patch. Anyone could test it and/or submit upstream? Index: include/clang/Driver/Options.td --- include/clang/Driver/Options.td +++ include/clang/Driver/Options.td @@ -2497,6 +2497,7 @@ defm non_call_exceptions : BooleanFFlag<"non-call-exceptions">, Group;