~wookey/xdeb/xdeb-allow-null-cross

« back to all changes in this revision

Viewing changes to checks/xdeb

  • Committer: Loïc Minier
  • Date: 2011-05-09 12:51:16 UTC
  • mfrom: (253.1.1 xdeb)
  • Revision ID: lool@dooz.org-20110509125116-otbw3xsvudm34nyb
Merge lp:~steve-mcintyre/xdeb/linaro-add-armhf; adds initial support for armhf.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
        'arm' => 'ELF 32-bit LSB .* ARM',
44
44
        'armeb' => 'ELF 32-bit MSB .* ARM',
45
45
        'armel' => 'ELF 32-bit LSB .* SYSV',
 
46
        'armhf' => 'ELF 32-bit LSB .* SYSV',
46
47
        'powerpc' => 'ELF 32-bit MSB .* PowerPC',
47
48
        'powerpc64' => 'ELF 64-bit MSB .* PowerPC',
48
49
        'mips' => 'ELF 32-bit MSB .* MIPS',
156
157
                        {
157
158
                                tag "binary-or-shlib-omits-rpath", "$file $RPATH{$file}";
158
159
                        }
159
 
                        if ($arch eq "armel")
 
160
                        if ($arch eq "armel" or $arch eq "armhf")
160
161
                        {
161
162
                                tag "binary-is-wrong-architecture", "$file"
162
163
                                        unless ($fileinfo =~ /ARM, version 1 \(SYSV\)/);