File: modify-configure-for-sun-fortran.pl

package info (click to toggle)
openmpi 1.6.5-9.1%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 91,628 kB
  • ctags: 44,305
  • sloc: ansic: 408,966; cpp: 44,454; sh: 27,828; makefile: 10,486; asm: 3,882; python: 1,239; lex: 805; perl: 549; csh: 253; fortran: 232; f90: 126; tcl: 12
file content (292 lines) | stat: -rwxr-xr-x 7,994 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
#!/usr/bin/env perl

# Copyright (c) 2010 Oracle and/or its affiliates.  All rights reserved.
# $COPYRIGHT$
# 
# Additional copyrights may follow
# 
# $HEADER$
#

# This script provides a way to modify the configure script using regular
# expressions, as opposed to a context diff which uses hardcoded context
# patterns. This is useful since the contents of the output configure script are
# not always known before hand. (Note: the script doesn't actually invoke the
# "patch" command)

use strict;
use File::Basename;
use Getopt::Long;
use Data::Dumper;

# Grab the name of this script
my $program = basename($0);

my $file_arg = "./configure";
my $help_arg;
my $debug_arg;

&Getopt::Long::Configure("bundling");
my $ok = Getopt::Long::GetOptions(
    "debug|d" => \$debug_arg,
    "file|f=s" => \$file_arg,
    "help|h" => \$help_arg,
);

# Help argument
if ($help_arg) {
    print "
 $program -
  -f|--file    File to patch (default: $file_arg)
  -d|--debug   Keep original copy of configure for debugging
  -h|--help    This help menu
";
    exit;
}

# Call the main subroutine and exit
&modify_configure_for_sun_fortran($file_arg);
exit;

sub modify_configure_for_sun_fortran {
    my ($file) = @_;

    # By default, patch the libtool script in the cwd
    $file = $file_arg if (! -e $file);

    # Keep backup copies of the file lying around for debugging
    # purposes
    if (defined($debug_arg)) {
        my $rand = RandomString(10);
        my $cmd = "cp $file $file.$rand\n";
        system($cmd);
    }

    # Read in the libtool script file
    my $contents = Read($file);
    die("Couldn't Read $file!\n") if (!$contents);

    # Note: we have to use octal escapes to match '*Sun\ F*) and the 
    # four succeeding lines in the bourne shell switch statement.
    #   \ = 134
    #   ) = 051
    #   * = 052
    #
    # Below is essentially an upstream patch for Libtool which we want 
    # made available to Open MPI users running older versions of Libtool
    foreach my $tag (("", "_F77", "_FC")) {

        # We have to change the search pattern and substitution on each
        # iteration to take into account the tag changing
        my $search_string = '\052Sun\134 F\052.*\n.*\n\s+' .
            "lt_prog_compiler_pic${tag}" . '.*\n.*\n.*\n.*\n';
        my $replace_string = "
        *Sun\\ Ceres\\ Fortran* | *Sun*Fortran*\\ [[1-7]].* | *Sun*Fortran*\\ 8.[[0-3]]*)
          # Sun Fortran 8.3 passes all unrecognized flags to the linker
          lt_prog_compiler_pic${tag}='-KPIC'
          lt_prog_compiler_static${tag}='-Bstatic'
          lt_prog_compiler_wl${tag}=''
          ;;
        *Sun\\ F* | *Sun*Fortran*)
          lt_prog_compiler_pic${tag}='-KPIC'
          lt_prog_compiler_static${tag}='-Bstatic'
          lt_prog_compiler_wl${tag}='-Qoption ld '
          ;;
        ";

        print("=== Patching configure for Sun Studio Fortran version strings ($tag)\n");
        $contents =~ s/$search_string/$replace_string/;
    }

    # Write changed file out
    Write($file, $contents);
}

sub Read {
    my ($file) = @_;

    my $contents;
    open (INPUT, $file) or warn "Can't open $file: $!";
    while (<INPUT>) {
        $contents .= $_;
    }
    close(INPUT) or warn "Can't close $file: $!";
    return $contents;
}

sub Write {
    my ($filename, $body) = @_;

    # Write out the file
    die("Failed to write to file: $!") if (! open(FILE, "> $filename"));

    print FILE $body;
    close FILE;
}

my $_seeded;
sub RandomString {
    # length of the random string to generate
    my $length_of_randomstring = shift;

    # Need something at least sorta random -- doesn't have to be
    # entirely unique (see "srand" in perlfunc(1))
    if (!$_seeded) {
        srand(time() ^ $$ ^ unpack "%L*", `hostname`);
        $_seeded = 1;
    }

    my @chars = ('a'..'z','A'..'Z','0'..'9','_');
    my $random_string;

    foreach (1..$length_of_randomstring) {
        $random_string .= $chars[rand @chars];
    }
    return $random_string;
}
#!/usr/bin/env perl

# Copyright (c) 2010 Oracle and/or its affiliates.  All rights reserved.
# $COPYRIGHT$
# 
# Additional copyrights may follow
# 
# $HEADER$
#

# This script provides a way to modify the configure script using regular
# expressions, as opposed to a context diff which uses hardcoded context
# patterns. This is useful since the contents of the output configure script are
# not always known before hand. (Note: the script doesn't actually invoke the
# "patch" command)

use strict;
use File::Basename;
use Getopt::Long;
use Data::Dumper;

# Grab the name of this script
my $program = basename($0);

my $file_arg = "./configure";
my $help_arg;
my $debug_arg;

&Getopt::Long::Configure("bundling");
my $ok = Getopt::Long::GetOptions(
    "debug|d" => \$debug_arg,
    "file|f=s" => \$file_arg,
    "help|h" => \$help_arg,
);

# Help argument
if ($help_arg) {
    print "
 $program -
  -f|--file    File to patch (default: $file_arg)
  -d|--debug   Keep original copy of configure for debugging
  -h|--help    This help menu
";
    exit;
}

# Call the main subroutine and exit
&modify_configure_for_sun_fortran($file_arg);
exit;

sub modify_configure_for_sun_fortran {
    my ($file) = @_;

    # By default, patch the libtool script in the cwd
    $file = $file_arg if (! -e $file);

    # Keep backup copies of the file lying around for debugging
    # purposes
    if (defined($debug_arg)) {
        my $rand = RandomString(10);
        my $cmd = "cp $file $file.$rand\n";
        system($cmd);
    }

    # Read in the libtool script file
    my $contents = Read($file);
    die("Couldn't Read $file!\n") if (!$contents);

    # Note: we have to use octal escapes to match '*Sun\ F*) and the 
    # four succeeding lines in the bourne shell switch statement.
    #   \ = 134
    #   ) = 051
    #   * = 052
    #
    # Below is essentially an upstream patch for Libtool which we want 
    # made available to Open MPI users running older versions of Libtool
    foreach my $tag (("", "_F77", "_FC")) {

        # We have to change the search pattern and substitution on each
        # iteration to take into account the tag changing
        my $search_string = '\052Sun\134 F\052.*\n.*\n\s+' .
            "lt_prog_compiler_pic${tag}" . '.*\n.*\n.*\n.*\n';
        my $replace_string = "
        *Sun\\ Ceres\\ Fortran* | *Sun*Fortran*\\ [[1-7]].* | *Sun*Fortran*\\ 8.[[0-3]]*)
          # Sun Fortran 8.3 passes all unrecognized flags to the linker
          lt_prog_compiler_pic${tag}='-KPIC'
          lt_prog_compiler_static${tag}='-Bstatic'
          lt_prog_compiler_wl${tag}=''
          ;;
        *Sun\\ F* | *Sun*Fortran*)
          lt_prog_compiler_pic${tag}='-KPIC'
          lt_prog_compiler_static${tag}='-Bstatic'
          lt_prog_compiler_wl${tag}='-Qoption ld '
          ;;
        ";

        print("=== Patching configure for Sun Studio Fortran version strings ($tag)\n");
        $contents =~ s/$search_string/$replace_string/;
    }

    # Write changed file out
    Write($file, $contents);
}

sub Read {
    my ($file) = @_;

    my $contents;
    open (INPUT, $file) or warn "Can't open $file: $!";
    while (<INPUT>) {
        $contents .= $_;
    }
    close(INPUT) or warn "Can't close $file: $!";
    return $contents;
}

sub Write {
    my ($filename, $body) = @_;

    # Write out the file
    die("Failed to write to file: $!") if (! open(FILE, "> $filename"));

    print FILE $body;
    close FILE;
}

my $_seeded;
sub RandomString {
    # length of the random string to generate
    my $length_of_randomstring = shift;

    # Need something at least sorta random -- doesn't have to be
    # entirely unique (see "srand" in perlfunc(1))
    if (!$_seeded) {
        srand(time() ^ $$ ^ unpack "%L*", `hostname`);
        $_seeded = 1;
    }

    my @chars = ('a'..'z','A'..'Z','0'..'9','_');
    my $random_string;

    foreach (1..$length_of_randomstring) {
        $random_string .= $chars[rand @chars];
    }
    return $random_string;
}