~ubuntu-branches/debian/sid/neovim/sid

« back to all changes in this revision

Viewing changes to .ci/common/build.sh

  • Committer: Package Import Robot
  • Author(s): James McCoy
  • Date: 2016-02-20 22:41:32 UTC
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: package-import@ubuntu.com-20160220224132-e24n8lh3yo5ylt23
Tags: upstream-0.1.2
ImportĀ upstreamĀ versionĀ 0.1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
build_deps() {
2
2
  if [[ "${BUILD_32BIT}" == ON ]]; then
3
 
    if [[ "${BUILD_MINGW}" == ON ]]; then
4
 
      >&2 echo "32-bit MinGW builds not supported."
5
 
      exit 1
6
 
    fi
7
 
 
8
3
    DEPS_CMAKE_FLAGS="${DEPS_CMAKE_FLAGS} ${CMAKE_FLAGS_32BIT}"
9
4
  fi
10
5
  if [[ "${BUILD_MINGW}" == ON ]]; then
42
37
    CMAKE_FLAGS="${CMAKE_FLAGS} -DCLANG_${CLANG_SANITIZER}=ON"
43
38
  fi
44
39
  if [[ "${BUILD_32BIT}" == ON ]]; then
45
 
    if [[ "${BUILD_MINGW}" == ON ]]; then
46
 
      >&2 echo "32-bit MinGW builds not supported."
47
 
      exit 1
48
 
    fi
49
 
 
50
40
    CMAKE_FLAGS="${CMAKE_FLAGS} ${CMAKE_FLAGS_32BIT}"
51
41
  fi
52
42
  if [[ "${BUILD_MINGW}" == ON ]]; then