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

Commit

Permalink
Allow AR path to be chosen by user
Browse files Browse the repository at this point in the history
  • Loading branch information
anirudh2290 committed Jun 7, 2019
1 parent ea7dd32 commit 94156b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ endif
# --Wl,--whole-archive -lmxnet --Wl,--no-whole-archive
lib/libmxnet.a: $(ALLX_DEP)
@mkdir -p $(@D)
ar crv $@ $(filter %.o, $?)
$(AR) crv $@ $(filter %.o, $?)

lib/libmxnet.so: $(ALLX_DEP)
@mkdir -p $(@D)
Expand Down
2 changes: 1 addition & 1 deletion ci/docker/install/ubuntu_ar.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ apt-get update || true
apt-get install -y \
wget

mkdir /opt/binutils_install && mkdir /opt/binutils_install && mkdir /opt/binutils && cd /opt/binutils
mkdir /opt/binutils_install && mkdir /opt/binutils_other && mkdir /opt/binutils && cd /opt/binutils
wget -nv https://mirror.clarkson.edu/gnu/binutils/binutils-2.27.tar.gz
./configure --prefix=/opt/binutils_install --exec-prefix=/opt/binutils_other
make -j$(nproc)
Expand Down
1 change: 1 addition & 0 deletions ci/docker/runtime_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,7 @@ build_ubuntu_gpu_mkldnn() {
USE_CUDNN=1 \
CUDA_ARCH="$CI_CUDA_COMPUTE_CAPABILITIES" \
USE_SIGNAL_HANDLER=1 \
AR=/usr/local/bin/ar \
-j$(nproc)
}

Expand Down

0 comments on commit 94156b6

Please sign in to comment.