summaryrefslogtreecommitdiff
path: root/strata/swift/gf-complete.morph
blob: adbe5a48147b01b7311036162175cbfe4aa307ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name: gf-complete
kind: chunk
build-system: autotools
pre-configure-commands:
- ./autogen.sh
configure-commands:
- |
  case "$MORPH_ARCH" in
  x86_64)
    SSE=
    ;;
  *)
    # Disable SSE4 for any architecture which are not x86_64 bits
    # see more information about architecture which support SSE in
    # https://en.wikipedia.org/wiki/SSE4#Supporting_CPUs.
    SSE=--disable-sse
    ;;
  esac
  ./configure --prefix="$PREFIX" "$SSE"