mkheaders
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. # Copyright (C) 2002 Free Software Foundation, Inc.
  3. #This file is part of GCC.
  4. #GCC is free software; you can redistribute it and/or modify it under
  5. #the terms of the GNU General Public License as published by the Free
  6. #Software Foundation; either version 2, or (at your option) any later
  7. #version.
  8. #GCC is distributed in the hope that it will be useful, but WITHOUT
  9. #ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. #FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  11. #for more details.
  12. #You should have received a copy of the GNU General Public License
  13. #along with GCC; see the file COPYING.  If not, write to the Free
  14. #Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  15. #02111-1307, USA.
  16. # Basic information
  17. target=arm-unknown-linux-gnu
  18. target_noncanonical=arm-linux
  19. version=3.4.4
  20. VERBOSE=0
  21. while [ x$1 = x-v ] ; do
  22.     shift
  23.     VERBOSE=`expr $VERBOSE + 1`
  24. done
  25. export VERBOSE
  26. if [ x$1 = x--help ] ; then
  27.     echo "Usage: mkheaders [options] [prefix]"
  28.     echo "Options:"
  29.     echo "  -v        Print more output (may be repeated for even more output)"
  30.     echo "  --help    This help"
  31.     echo "  --version Print version information"
  32.     exit 0
  33. fi
  34. if [ x$1 = x--version ] ; then
  35.     echo "mkheaders (GCC) version $version"
  36.     echo "Copyright 2002 Free Software Foundation, Inc."
  37.     echo "This program is free software; you may redistribute it under the"
  38.     echo "terms of the GNU General Public License.  This program has"
  39.     echo "absolutely no warranty."
  40.     exit 0
  41. fi
  42. # Common prefix for installation directories.
  43. if [ x$1 != x ] ; then
  44.   prefix=$1
  45. else
  46.   prefix=/usr/local/arm/3.4.4
  47. fi
  48. # Directory in which to put localized header files. On the systems with
  49. # gcc as the native cc, `local_prefix' may not be `prefix' which is
  50. # `/usr'.
  51. # NOTE: local_prefix *should not* default from prefix.
  52. local_prefix=/usr/local
  53. # Directory in which to put host dependent programs and libraries
  54. exec_prefix=${prefix}
  55. # Directory in which to put the directories used by the compiler.
  56. libdir=${exec_prefix}/lib
  57. libexecdir=${exec_prefix}/libexec
  58. # Directory in which the compiler finds libraries, etc.
  59. libsubdir=${libdir}/gcc/${target_noncanonical}/${version}
  60. # Directory in which the compiler finds executables
  61. libexecsubdir=${libexecdir}/gcc/${target_noncanonical}/${version}
  62. # Since gcc_tooldir does not exist at build-time, use -B${build_tooldir}/bin/
  63. build_tooldir=${exec_prefix}/${target_noncanonical}
  64. # Directory to search for site-specific includes.
  65. local_includedir=${local_prefix}/include
  66. includedir=${prefix}/include
  67. itoolsdir=${libexecsubdir}/install-tools
  68. itoolsdatadir=${libsubdir}/install-tools
  69. incdir=${libsubdir}/include
  70. . ${itoolsdatadir}/mkheaders.conf
  71. cd ${itoolsdir}
  72. rm -rf ${incdir}/*
  73. if [ x${STMP_FIXINC} != x ] ; then
  74. TARGET_MACHINE="${target}" target_canonical="${target}" 
  75.     ${SHELL} ./fixinc.sh ${incdir} 
  76.     ${SYSTEM_HEADER_DIR} ${OTHER_FIXINCLUDES_DIRS}
  77. rm -f ${incdir}/syslimits.h
  78. if [ -f ${incdir}/limits.h ]; then
  79.   mv ${incdir}/limits.h ${incdir}/syslimits.h
  80. else
  81.   cp ${itoolsdatadir}/gsyslimits.h ${incdir}/syslimits.h
  82. fi
  83. fi
  84. cp ${itoolsdatadir}/include/* ${incdir}
  85. if [ x${STMP_FIXPROTO} != x ] ; then
  86.   mkinstalldirs="${SHELL} ${itoolsdir}/mkinstalldirs"
  87.   export FIXPROTO_DEFINES mkinstalldirs
  88.   ${SHELL} fixproto ${incdir} ${incdir} ${SYSTEM_HEADER_DIR} || exit 1
  89. fi