mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 04:02:37 +00:00
Fix shebang breaking some shells. Closes #2067.
This commit is contained in:
parent
2a50fafef2
commit
a2911ed933
2
Changes
2
Changes
@ -38,6 +38,8 @@ The contributors that suggested a given feature are shown in []. Thanks!
|
|||||||
|
|
||||||
**** Fix %{number}s with strings. #2093. [agrobman]
|
**** Fix %{number}s with strings. #2093. [agrobman]
|
||||||
|
|
||||||
|
**** Fix shebang breaking some shells. Closes #2067. [zdave]
|
||||||
|
|
||||||
|
|
||||||
* Verilator 4.024 2019-12-08
|
* Verilator 4.024 2019-12-08
|
||||||
|
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
: # -*-Mode: perl;-*- use perl, wherever it is
|
#!/usr/bin/env perl
|
||||||
eval 'exec perl -wS $0 ${1+"$@"}'
|
|
||||||
if 0;
|
|
||||||
######################################################################
|
######################################################################
|
||||||
#
|
#
|
||||||
# Copyright 2003-2020 by Wilson Snyder. This program is free software; you
|
# Copyright 2003-2020 by Wilson Snyder. This program is free software; you
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
: # -*-Mode: perl;-*- use perl, wherever it is
|
#!/usr/bin/env perl
|
||||||
eval 'exec perl -wS $0 ${1+"$@"}'
|
|
||||||
if 0;
|
|
||||||
######################################################################
|
######################################################################
|
||||||
#
|
#
|
||||||
# Copyright 2003-2020 by Wilson Snyder. This program is free software; you
|
# Copyright 2003-2020 by Wilson Snyder. This program is free software; you
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
: # -*-Mode: perl;-*- use perl, wherever it is
|
#!/usr/bin/env perl
|
||||||
eval 'exec perl -wS $0 ${1+"$@"}'
|
|
||||||
if 0;
|
|
||||||
# See copyright, etc in below POD section.
|
# See copyright, etc in below POD section.
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
require 5.006_001;
|
|
||||||
use warnings;
|
use warnings;
|
||||||
use Getopt::Long;
|
use Getopt::Long;
|
||||||
use IO::File;
|
use IO::File;
|
||||||
|
@ -1,11 +1,9 @@
|
|||||||
: # -*-Mode: perl;-*- use perl, wherever it is
|
#!/usr/bin/env perl
|
||||||
eval 'exec perl -wS $0 ${1+"$@"}'
|
|
||||||
if 0;
|
|
||||||
# See copyright, etc in below POD section.
|
# See copyright, etc in below POD section.
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
use strict;
|
|
||||||
use warnings;
|
use warnings;
|
||||||
|
use strict;
|
||||||
use Getopt::Long;
|
use Getopt::Long;
|
||||||
use IO::File;
|
use IO::File;
|
||||||
use Pod::Usage;
|
use Pod::Usage;
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
: # -*-Mode: perl;-*- use perl, wherever it is
|
#!/usr/bin/env perl
|
||||||
eval 'exec perl -wS $0 ${1+"$@"}'
|
|
||||||
if 0;
|
|
||||||
# DESCRIPTION: Print include statements for each ARGV
|
# DESCRIPTION: Print include statements for each ARGV
|
||||||
#
|
#
|
||||||
# Copyright 2003-2020 by Wilson Snyder. This package is free software; you can
|
# Copyright 2003-2020 by Wilson Snyder. This package is free software; you can
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
: # -*-Mode: perl;-*- use perl, wherever it is
|
#!/usr/bin/env perl
|
||||||
eval 'exec perl -wS $0 ${1+"$@"}'
|
|
||||||
if 0;
|
|
||||||
# See copyright, etc in below POD section.
|
# See copyright, etc in below POD section.
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/env perl
|
||||||
######################################################################
|
######################################################################
|
||||||
#
|
#
|
||||||
# Copyright 2007-2020 by Wilson Snyder. This package is free software; you
|
# Copyright 2007-2020 by Wilson Snyder. This package is free software; you
|
||||||
@ -15,6 +15,7 @@
|
|||||||
|
|
||||||
# DESCRIPTION: Diff bison files
|
# DESCRIPTION: Diff bison files
|
||||||
|
|
||||||
|
use warnings;
|
||||||
use Getopt::Long;
|
use Getopt::Long;
|
||||||
use IO::File;
|
use IO::File;
|
||||||
use strict;
|
use strict;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/env perl
|
||||||
######################################################################
|
######################################################################
|
||||||
#
|
#
|
||||||
# Copyright 2007-2020 by Wilson Snyder. This package is free software; you
|
# Copyright 2007-2020 by Wilson Snyder. This package is free software; you
|
||||||
@ -15,6 +15,7 @@
|
|||||||
|
|
||||||
# DESCRIPTION: Debugging of bison output
|
# DESCRIPTION: Debugging of bison output
|
||||||
|
|
||||||
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
my $Debug;
|
my $Debug;
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/env perl
|
||||||
# See copyright, etc in below POD section.
|
# See copyright, etc in below POD section.
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
|
use warnings;
|
||||||
use Cwd;
|
use Cwd;
|
||||||
use File::Copy qw(cp);
|
use File::Copy qw(cp);
|
||||||
use File::Path qw(mkpath);
|
use File::Path qw(mkpath);
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/env perl
|
||||||
# See copyright, etc in below POD section.
|
# See copyright, etc in below POD section.
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
require 5.006_001;
|
use warnings;
|
||||||
use Getopt::Long;
|
use Getopt::Long;
|
||||||
use IO::File;
|
use IO::File;
|
||||||
use Pod::Usage;
|
use Pod::Usage;
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/env perl
|
||||||
# See copyright, etc in below POD section.
|
# See copyright, etc in below POD section.
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
require 5.006_001;
|
use warnings;
|
||||||
use Getopt::Long;
|
use Getopt::Long;
|
||||||
use IO::File;
|
use IO::File;
|
||||||
use Pod::Usage;
|
use Pod::Usage;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/env perl
|
||||||
######################################################################
|
######################################################################
|
||||||
#
|
#
|
||||||
# Copyright 2007-2020 by Wilson Snyder. This package is free software; you
|
# Copyright 2007-2020 by Wilson Snyder. This package is free software; you
|
||||||
@ -15,6 +15,7 @@
|
|||||||
|
|
||||||
# DESCRIPTION: Diff flex files
|
# DESCRIPTION: Diff flex files
|
||||||
|
|
||||||
|
use warnings;
|
||||||
use IO::File;
|
use IO::File;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/env perl
|
||||||
# See copyright, etc in below POD section.
|
# See copyright, etc in below POD section.
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
|
use warnings;
|
||||||
use Getopt::Long;
|
use Getopt::Long;
|
||||||
#use Data::Dumper; $Data::Dumper::Indent=1; $Data::Dumper::Sortkeys=1; #Debug
|
#use Data::Dumper; $Data::Dumper::Indent=1; $Data::Dumper::Sortkeys=1; #Debug
|
||||||
use IO::File;
|
use IO::File;
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/env perl
|
||||||
# See copyright, etc in below POD section.
|
# See copyright, etc in below POD section.
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
|
use warnings;
|
||||||
use Getopt::Long;
|
use Getopt::Long;
|
||||||
use Cwd;
|
use Cwd;
|
||||||
use IO::File;
|
use IO::File;
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/env perl
|
||||||
# See copyright, etc in below POD section.
|
# See copyright, etc in below POD section.
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
require 5.006_001;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
#======================================================================
|
#======================================================================
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/env perl
|
||||||
# See copyright, etc in below POD section.
|
# See copyright, etc in below POD section.
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
require 5.006_001;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
#======================================================================
|
#======================================================================
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/env perl
|
||||||
# See copyright, etc in below POD section.
|
# See copyright, etc in below POD section.
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
require 5.006_001;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
#======================================================================
|
#======================================================================
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/env perl
|
||||||
# See copyright, etc in below POD section.
|
# See copyright, etc in below POD section.
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
require 5.006_001;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
#======================================================================
|
#======================================================================
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/env perl
|
||||||
# See copyright, etc in below POD section.
|
# See copyright, etc in below POD section.
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
require 5.006_001;
|
use warnings;
|
||||||
use Getopt::Long;
|
use Getopt::Long;
|
||||||
use IO::File;
|
use IO::File;
|
||||||
use Pod::Usage;
|
use Pod::Usage;
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/env perl
|
||||||
# See copyright, etc in below POD section.
|
# See copyright, etc in below POD section.
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
#require 5.006_001;
|
use warnings;
|
||||||
use Getopt::Long;
|
use Getopt::Long;
|
||||||
use IO::File;
|
use IO::File;
|
||||||
use Pod::Usage;
|
use Pod::Usage;
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/env perl
|
||||||
# See copyright, etc in below POD section.
|
# See copyright, etc in below POD section.
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
require 5.006_001;
|
use warnings;
|
||||||
use Getopt::Long;
|
use Getopt::Long;
|
||||||
use IO::File;
|
use IO::File;
|
||||||
use Pod::Usage;
|
use Pod::Usage;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/env perl
|
||||||
######################################################################
|
######################################################################
|
||||||
#
|
#
|
||||||
# Copyright 2005-2020 by Wilson Snyder. Verilator is free software; you
|
# Copyright 2005-2020 by Wilson Snyder. Verilator is free software; you
|
||||||
@ -12,9 +12,10 @@
|
|||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
# DESCRIPTION: Query's subversion to get version number
|
# DESCRIPTION: Query's subversion to get version number
|
||||||
|
|
||||||
|
use warnings;
|
||||||
|
|
||||||
my $dir = $ARGV[0]; defined $dir or die "%Error: No directory argument,";
|
my $dir = $ARGV[0]; defined $dir or die "%Error: No directory argument,";
|
||||||
chdir $dir;
|
chdir $dir;
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/env perl
|
||||||
# See copyright, etc in below POD section.
|
# See copyright, etc in below POD section.
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
require 5.006_001;
|
use warnings;
|
||||||
use Getopt::Long;
|
use Getopt::Long;
|
||||||
use IO::File;
|
use IO::File;
|
||||||
use Pod::Usage;
|
use Pod::Usage;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/env perl
|
||||||
######################################################################
|
######################################################################
|
||||||
#
|
#
|
||||||
# Copyright 2002-2020 by Wilson Snyder. Verilator is free software; you
|
# Copyright 2002-2020 by Wilson Snyder. Verilator is free software; you
|
||||||
@ -12,9 +12,10 @@
|
|||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
# DESCRIPTION: Edits flex output to get around various broken flex issues.
|
# DESCRIPTION: Edits flex output to get around various broken flex issues.
|
||||||
|
|
||||||
|
use warnings;
|
||||||
|
|
||||||
my $Opt_Prefix = $ARGV[0] or die "%Error: No prefix specified,";
|
my $Opt_Prefix = $ARGV[0] or die "%Error: No prefix specified,";
|
||||||
|
|
||||||
foreach my $line (<STDIN>) {
|
foreach my $line (<STDIN>) {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/env perl
|
||||||
######################################################################
|
######################################################################
|
||||||
#
|
#
|
||||||
# Copyright 2002-2020 by Wilson Snyder. Verilator is free software; you
|
# Copyright 2002-2020 by Wilson Snyder. Verilator is free software; you
|
||||||
@ -12,9 +12,10 @@
|
|||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
# DESCRIPTION: Edits pod2latex output
|
# DESCRIPTION: Edits pod2latex output
|
||||||
|
|
||||||
|
use warnings;
|
||||||
|
|
||||||
my $Opt_DistTitle = $ARGV[0] or die "%Error: No disttitle specified,";
|
my $Opt_DistTitle = $ARGV[0] or die "%Error: No disttitle specified,";
|
||||||
my $Opt_DistDate = $ARGV[1] or die "%Error: No distdate specified,";
|
my $Opt_DistDate = $ARGV[1] or die "%Error: No distdate specified,";
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/env perl
|
||||||
# See copyright, etc in below POD section.
|
# See copyright, etc in below POD section.
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
#require 5.006_001;
|
use warnings;
|
||||||
use Getopt::Long;
|
use Getopt::Long;
|
||||||
use IO::File;
|
use IO::File;
|
||||||
use Pod::Usage;
|
use Pod::Usage;
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
: # -*-Mode: perl;-*- use perl, wherever it is
|
#!/usr/bin/env perl
|
||||||
eval 'exec perl -wS $0 ${1+"$@"}'
|
|
||||||
if 0;
|
|
||||||
# See copyright, etc in below POD section.
|
# See copyright, etc in below POD section.
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
require 5.006_001;
|
require 5.006_001;
|
||||||
|
use warnings;
|
||||||
use Cwd;
|
use Cwd;
|
||||||
BEGIN {
|
BEGIN {
|
||||||
if (!$ENV{VERILATOR_ROOT} && -x "../bin/verilator") {
|
if (!$ENV{VERILATOR_ROOT} && -x "../bin/verilator") {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/perl
|
#!/usr/bin/env perl
|
||||||
# DESCRIPTION: Verilator: Verilog Test driver bootstrapper
|
# DESCRIPTION: Verilator: Verilog Test driver bootstrapper
|
||||||
#
|
#
|
||||||
# Copyright 2008 by Wilson Snyder. This program is free software; you can
|
# Copyright 2008 by Wilson Snyder. This program is free software; you can
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/env perl
|
||||||
# See copyright, etc in below POD section.
|
# See copyright, etc in below POD section.
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
require 5.006_001;
|
require 5.006_001;
|
||||||
|
use warnings;
|
||||||
|
|
||||||
use Getopt::Long;
|
use Getopt::Long;
|
||||||
use IO::File;
|
use IO::File;
|
||||||
use Pod::Usage;
|
use Pod::Usage;
|
||||||
|
Loading…
Reference in New Issue
Block a user