You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.2KB

  1. #!/bin/bash
  2. set -ex
  3. BUILD_DIR=${TRAVIS_BUILD_DIR}
  4. mkdir -p "${DEPENDENCY_DIR}" && cd "${DEPENDENCY_DIR}"
  5. # --- CMake
  6. CMAKE_INSTALLER=install-cmake.sh
  7. if [[ ! -f ${CMAKE_INSTALLER} ]]
  8. then
  9. curl -sSL https://cmake.org/files/v3.8/cmake-3.8.2-Linux-x86_64.sh -o ${CMAKE_INSTALLER}
  10. chmod +x ${CMAKE_INSTALLER}
  11. fi
  12. sudo ./${CMAKE_INSTALLER} --prefix=/usr/local --skip-license
  13. cmake --version
  14. cd ${DEPENDENCY_DIR}
  15. # --- LibC++
  16. #if [[ "${CXX}" = clang* ]]
  17. #then
  18. # if [[ ! -d "${DEPENDENCY_DIR}/llvm-source" ]]
  19. # then
  20. # LLVM_RELEASE=release_50
  21. # git clone --depth=1 -b ${LLVM_RELEASE} https://github.com/llvm-mirror/llvm.git llvm-source
  22. # git clone --depth=1 -b ${LLVM_RELEASE} https://github.com/llvm-mirror/libcxx.git llvm-source/projects/libcxx
  23. # git clone --depth=1 -b ${LLVM_RELEASE} https://github.com/llvm-mirror/libcxxabi.git llvm-source/projects/libcxxabi
  24. # fi
  25. #
  26. # mkdir -p build && cd build
  27. #
  28. # cmake -DCMAKE_C_COMPILER=${CC} \
  29. # -DCMAKE_CXX_COMPILER=${CXX} \
  30. # -DCMAKE_BUILD_TYPE=RelWithDebInfo \
  31. # -DCMAKE_INSTALL_PREFIX=/usr \
  32. # -DLIBCXX_ABI_UNSTABLE=ON \
  33. # ../llvm-source
  34. # make cxx -j4
  35. #
  36. # sudo make install-cxxabi install-cxx
  37. # rm -rf *
  38. #fi
  39. cd ${BUILD_DIR}