mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-07 14:34:51 +01:00
Moving it inside gcc dir allows gcc to detect and build isl while building gcc. It has dependencies on other libraries that would need to be prebuilt if we build it ourselves. This is one of a few steps in building gcc with isl and allowing graphite optimization flags.
15 lines
207 B
Perl
Executable File
15 lines
207 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use strict;
|
|
use Pod::LaTeX;
|
|
|
|
my ($in, $out) = @ARGV;
|
|
|
|
my $parser = new Pod::LaTeX(
|
|
AddPreamble => 0,
|
|
AddPostamble => 0,
|
|
LevelNoNum => 5,
|
|
);
|
|
|
|
$parser->parse_from_file($in, $out);
|