Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Added status output
Browse files Browse the repository at this point in the history
  • Loading branch information
lebeg committed Jul 20, 2018
1 parent c48154b commit d84854c
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
1 change: 0 additions & 1 deletion ci/docker/Dockerfile.build.android_armv7
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ COPY install/android_armv7_openblas.sh /work/deps
RUN /work/deps/android_armv7_openblas.sh

ENV OpenBLAS_HOME=${CROSS_ROOT}
ENV OpenBLAS_DIR=${CROSS_ROOT}

WORKDIR /work

Expand Down
4 changes: 3 additions & 1 deletion ci/docker/Dockerfile.build.android_armv8
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ ENV CXX=${CROSS_ROOT}/bin/${CROSS_TRIPLE}-clang++
# Build ARM dependencies.
COPY install/android_arm64_openblas.sh /work/
RUN /work/android_arm64_openblas.sh
ENV CPLUS_INCLUDE_PATH /work/deps/OpenBLAS

ENV OpenBLAS_HOME=${CROSS_ROOT}

WORKDIR /work/build

COPY runtime_functions.sh /work/
1 change: 0 additions & 1 deletion ci/docker/Dockerfile.build.armv6
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ COPY install/arm_openblas.sh /work/
RUN /work/arm_openblas.sh

ENV OpenBLAS_HOME=${CROSS_ROOT}
ENV OpenBLAS_DIR=${CROSS_ROOT}

COPY install/deb_ubuntu_ccache.sh /work/
RUN /work/deb_ubuntu_ccache.sh
Expand Down
1 change: 0 additions & 1 deletion ci/docker/Dockerfile.build.armv7
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ COPY install/arm_openblas.sh /work/
RUN /work/arm_openblas.sh

ENV OpenBLAS_HOME=${CROSS_ROOT}
ENV OpenBLAS_DIR=${CROSS_ROOT}

COPY install/deb_ubuntu_ccache.sh /work/
RUN /work/deb_ubuntu_ccache.sh
Expand Down
1 change: 0 additions & 1 deletion ci/docker/Dockerfile.build.armv8
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ COPY install/arm_openblas.sh /work/
RUN /work/arm_openblas.sh

ENV OpenBLAS_HOME=${CROSS_ROOT}
ENV OpenBLAS_DIR=${CROSS_ROOT}

COPY install/deb_ubuntu_ccache.sh /work/
RUN /work/deb_ubuntu_ccache.sh
Expand Down
1 change: 0 additions & 1 deletion ci/docker/Dockerfile.build.jetson
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ COPY install/arm_openblas.sh /work/
RUN /work/arm_openblas.sh

ENV OpenBLAS_HOME=${CROSS_ROOT}
ENV OpenBLAS_DIR=${CROSS_ROOT}

COPY install/deb_ubuntu_ccache.sh /work/
RUN /work/deb_ubuntu_ccache.sh
Expand Down
1 change: 1 addition & 0 deletions cmake/Modules/FindAccelerate.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

if($ENV{Accelerate_HOME})
file(TO_CMAKE_PATH "$ENV{Accelerate_HOME}" Accelerate_HOME)
message(STATUS "Accelerate_HOME=${Accelerate_HOME}")
endif()

set(Accelerate_INCLUDE_SEARCH_PATHS
Expand Down
4 changes: 3 additions & 1 deletion cmake/Modules/FindAtlas.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,13 @@
# Atlas_LIBRARIES

if($ENV{Atlas_ROOT_DIR})
file(TO_CMAKE_PATH "$ENV{Atlas_ROOT_DIR}" CROSS_ROOT)
file(TO_CMAKE_PATH "$ENV{Atlas_ROOT_DIR}" Atlas_ROOT_DIR)
message(STATUS "Atlas_ROOT_DIR=${Atlas_ROOT_DIR}")
endif()

if($ENV{CROSS_ROOT})
file(TO_CMAKE_PATH "$ENV{CROSS_ROOT}" CROSS_ROOT)
message(STATUS "CROSS_ROOT=${CROSS_ROOT}")
endif()

if(CMAKE_CROSSCOMPILING)
Expand Down
1 change: 1 addition & 0 deletions cmake/Modules/FindMKL.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@

if($ENV{MKLROOT})
file(TO_CMAKE_PATH "$ENV{MKLROOT}" MKLROOT)
message(STATUS "MKLROOT=${MKLROOT}")
endif()

# ---[ Root folders
Expand Down
1 change: 1 addition & 0 deletions cmake/Modules/FindMKLML.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

if($ENV{MKLROOT})
file(TO_CMAKE_PATH "$ENV{MKLROOT}" MKLROOT)
message(STATUS "MKLROOT=${MKLROOT}")
endif()

set(MKLML_INCLUDE_SEARCH_PATHS
Expand Down
6 changes: 2 additions & 4 deletions cmake/Modules/FindOpenBLAS.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,12 @@

if($ENV{OpenBLAS_HOME})
file(TO_CMAKE_PATH "$ENV{OpenBLAS_HOME}" OpenBLAS_HOME)
endif()

if($ENV{OpenBLAS})
file(TO_CMAKE_PATH "$ENV{OpenBLAS}" OpenBLAS_DIR)
message(STATUS "OpenBLAS_HOME=${OpenBLAS_HOME}")
endif()

if($ENV{CROSS_ROOT})
file(TO_CMAKE_PATH "$ENV{CROSS_ROOT}" CROSS_ROOT)
message(STATUS "CROSS_ROOT=${CROSS_ROOT}")
endif()

if(CMAKE_CROSSCOMPILING)
Expand Down

0 comments on commit d84854c

Please sign in to comment.