Fix minor errors in instructions of building Paddle on Mac OS X (#347)

avx_docs
wangkuiyi 8 years ago committed by gangliao
parent f6f80b9378
commit ed83a1d6b6

@ -219,10 +219,9 @@ easy_install pip
# Install google test on Mac OS X # Install google test on Mac OS X
# Download gtest 1.7.0 # Download gtest 1.7.0
wget https://github.com/google/googletest/archive/release-1.7.0.tar.gz wget https://github.com/google/googletest/archive/release-1.7.0.tar.gz
tar -xvf googletest-release-1.7.0.tar.gz && cd googletest-release-1.7.0 tar -xzf googletest-release-1.7.0.tar.gz && cd googletest-release-1.7.0
# Build gtest # Build gtest
mkdir build && cmake .. mkdir build && cd build && cmake .. && make
make
# Install gtest library # Install gtest library
sudo cp -r ../include/gtest /usr/local/include/ sudo cp -r ../include/gtest /usr/local/include/
sudo cp lib*.a /usr/local/lib sudo cp lib*.a /usr/local/lib

Loading…
Cancel
Save