X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;ds=sidebyside;f=helper%2Felf-default-arch;fp=helper%2Felf-default-arch;h=0adc351d4780609d105255388a5bbbaa8b815379;hb=89e336ee166be538e376d288fb2b3fbbffd66d4c;hp=0000000000000000000000000000000000000000;hpb=53bf430e26f4a53837bd38b58a427079caab3d4b;p=febootstrap.git diff --git a/helper/elf-default-arch b/helper/elf-default-arch new file mode 100755 index 0000000..0adc351 --- /dev/null +++ b/helper/elf-default-arch @@ -0,0 +1,27 @@ +#!/bin/sh - +# Copyright (C) 2010 Red Hat Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +# Calculate the default ELF object architecture for this format. +# There doesn't seem to be an easy way to derive this from binutils, +# so instead we hard code it. + +case $(uname -m) in + i[3456]86) echo elf32-i386 ;; + x86_64) echo elf64-x86-64 ;; + *) + echo "This architecture is not recognized. Please update helper/elf-default-arch." +esac