autogen-linux.sh 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. #!/usr/bin/env bash
  2. #
  3. # Copyright (C) 2011-2018 Intel Corporation. All rights reserved.
  4. #
  5. # Redistribution and use in source and binary forms, with or without
  6. # modification, are permitted provided that the following conditions
  7. # are met:
  8. #
  9. # * Redistributions of source code must retain the above copyright
  10. # notice, this list of conditions and the following disclaimer.
  11. # * Redistributions in binary form must reproduce the above copyright
  12. # notice, this list of conditions and the following disclaimer in
  13. # the documentation and/or other materials provided with the
  14. # distribution.
  15. # * Neither the name of Intel Corporation nor the names of its
  16. # contributors may be used to endorse or promote products derived
  17. # from this software without specific prior written permission.
  18. #
  19. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20. # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21. # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  22. # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  23. # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  24. # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  25. # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  26. # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  27. # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  28. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  29. # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. #
  31. #
  32. set -x
  33. srcdir=`dirname $0`
  34. [ -z "$srcdir" ] && srcdir=.
  35. ORIGDIR=`pwd`
  36. cd $srcdir
  37. autoreconf -v --install || exit $?
  38. cd $ORIGDIR || exit $?
  39. CFLAGS="$CFLAGS -std=c99 -fno-builtin -DHAVE_SGX=1 -fPIC -DUNW_LOCAL_ONLY"
  40. # Remove duplicated compiler options and filter out `-nostdinc'
  41. CFLAGS=`echo $CFLAGS | tr ' ' '\n' | sort | uniq | grep -v nostdinc | tr '\n' ' '`
  42. HOST_OPT=
  43. if echo $CFLAGS | grep -q -- '-m32'; then
  44. HOST_OPT='--host=i386-linux-gnu'
  45. fi
  46. # Workaround for icc
  47. #
  48. # If we are running icc on Debian-like system, add
  49. # /usr/include/$(dpkg-architecture -qDEB_BUILD_MULTIARCH)
  50. # to the header search path.
  51. if [ -f /usr/bin/dpkg ]; then
  52. if [ x$CC != x"" ]; then
  53. if $CC -E -dM -xc /dev/null | grep -q __INTEL_COMPILER; then
  54. INCVAR=$(dpkg-architecture -qDEB_BUILD_MULTIARCH)
  55. CFLAGS="$CFLAGS -I/usr/include/$INCVAR"
  56. fi
  57. fi
  58. fi
  59. export CFLAGS
  60. $srcdir/configure $HOST_OPT --enable-shared=no \
  61. --disable-block-signals \
  62. --enable-debug=no \
  63. --enable-debug-frame=no \
  64. --enable-cxx-exceptions \
  65. "$@"