]> git.ipfire.org Git - thirdparty/openssl.git/blob - fuzz/mkfuzzoids.pl
x86: Always generate .note.gnu.property section for ELF outputs
[thirdparty/openssl.git] / fuzz / mkfuzzoids.pl
1 #! /usr/bin/env perl
2 # Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
3 #
4 # Licensed under the Apache License 2.0 (the "License"). You may not use
5 # this file except in compliance with the License. You can obtain a copy
6 # in the file LICENSE in the source distribution or at
7 # https://www.openssl.org/source/license.html
8
9 my $obj_dat_h = $ARGV[0];
10
11 # The year the output file is generated.
12 my $YEAR = [localtime()]->[5] + 1900;
13
14 open IN, '<', $obj_dat_h
15 || die "Couldn't open $obj_dat_h : $!\n";
16
17 while(<IN>) {
18 s|\R$||; # Better chomp
19
20 next unless m|^\s+((0x[0-9A-F][0-9A-F],)*)\s+/\*\s\[\s*\d+\]\s(OBJ_\w+)\s\*/$|;
21
22 my $OID = $1;
23 my $OBJname = $3;
24
25 $OID =~ s|0x|\\x|g;
26 $OID =~ s|,||g;
27
28 print "$OBJname=\"$OID\"\n";
29 }
30 close IN;