build without lapack on cmake

This commit is contained in:
Isuru Fernando 2019-05-12 14:17:12 -05:00
parent cd99dfe034
commit 3d94ab660f
1 changed files with 6 additions and 4 deletions

View File

@ -59,11 +59,12 @@ steps:
image: ubuntu:18.04
environment:
CC: gcc
CMAKE_FLAGS: '-DDYNAMIC_ARCH=1 -DTARGET=ARMV8 -DNUM_THREADS=32'
CXX: g++
CMAKE_FLAGS: '-DDYNAMIC_ARCH=1 -DTARGET=ARMV8 -DNUM_THREADS=32 -DNOFORTRAN=ON -DBUILD_WITHOUT_LAPACK=ON'
commands:
- echo "CMAKE_FLAGS:= $CMAKE_FLAGS"
- apt-get update -y
- apt-get install -y make $CC gfortran perl cmake
- apt-get install -y make $CC $CXX g++ perl cmake
- $CC --version
- mkdir build && cd build
- cmake $CMAKE_FLAGS ..
@ -83,11 +84,12 @@ steps:
image: ubuntu:18.04
environment:
CC: clang
CMAKE_FLAGS: '-DDYNAMIC_ARCH=1 -DTARGET=ARMV8 -DNUM_THREADS=32'
CXX: clang++
CMAKE_FLAGS: '-DDYNAMIC_ARCH=1 -DTARGET=ARMV8 -DNUM_THREADS=32 -DNOFORTRAN=ON -DBUILD_WITHOUT_LAPACK=ON'
commands:
- echo "CMAKE_FLAGS:= $CMAKE_FLAGS"
- apt-get update -y
- apt-get install -y make $CC gfortran perl cmake
- apt-get install -y make $CC $CXX perl cmake
- $CC --version
- mkdir build && cd build
- cmake $CMAKE_FLAGS ..