autogen-linux.sh 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. if [ "$1" = "DEBUG" ]
  40. then
  41. COMMON_FLAGS="-ggdb -Og"
  42. else
  43. COMMON_FLAGS="-g -O2 -D_FORTIFY_SOURCE=2"
  44. fi
  45. COMMON_FLAGS="$COMMON_FLAGS -DNO_HEAP_CHECK -DTCMALLOC_SGX -DTCMALLOC_NO_ALIASES $2"
  46. ENCLAVE_CFLAGS="$COMMON_FLAGS -ffreestanding -nostdinc -fvisibility=hidden -fPIC"
  47. ENCLAVE_CXXFLAGS="$ENCLAVE_CFLAGS -nostdinc++ -std=c++11"
  48. CFLAGS="$CFLAGS $ENCLAVE_CFLAGS"
  49. CXXFLAGS="$CXXFLAGS $ENCLAVE_CXXFLAGS"
  50. CPPFLAGS="-I../../../common/inc -I../../../common/inc/tlibc -I../../../common/inc/internal/ -I../../../sdk/tlibcxx/include -I../../../sdk/trts/"
  51. if echo $CFLAGS | grep -q -- '-m32'; then
  52. HOST_OPT='--host=i386-linux-gnu'
  53. fi
  54. export CFLAGS
  55. export CXXFLAGS
  56. export CPPFLAGS
  57. $srcdir/configure $HOST_OPT --enable-shared=no \
  58. --disable-cpu-profiler \
  59. --disable-heap-profiler \
  60. --disable-heap-checker \
  61. --disable-debugalloc \
  62. --enable-minimal
  63. #must remove this attribute define in generated config.h, or can't debug tcmalloc with sgx-gdb
  64. if [ "$1" = "DEBUG" ]
  65. then
  66. sed -i 's/#define HAVE___ATTRIBUTE__ 1/\/\/#define HAVE___ATTRIBUTE__ 1/g' src/config.h
  67. fi