Allow users to use a non-system version of perl, python and awk, which is useful in certain package managers.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
@JDevlieghere, would you care to review? This is another instance of moving away from system binaries to whatever the user / package manager wants the build to use.
Comment Actions
#!/usr/bin/env perl -w (2 arguments) unfortunately does not work on Linux and many other systems.
Comment Actions
Not sure if there's a similar thing for awk, but I think use warnings is preferred nowadays over perl -w.
Comment Actions
I dropped the awk bits, since there's no portable way to do it there, and replaced all perl -w with perl and use warnings.