We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 569f344 commit c7ca116Copy full SHA for c7ca116
config.sh
@@ -88,8 +88,15 @@ function build_zstd {
88
local tar_name=zstd-${root_name}.tar.gz
89
fetch_unpack https://github.com/facebook/zstd/releases/download/${root_name}/zstd-${ZSTD_VERSION}.tar.gz
90
(cd zstd-${ZSTD_VERSION} \
91
+ && cd build \
92
+ && mkdir build \
93
94
+ && cmake ../cmake -DCMAKE_INSTALL_PREFIX=$BUILD_PREFIX \
95
&& make \
- && make install prefix=$BUILD_PREFIX )
96
+ && make install )
97
+ #(cd zstd-${ZSTD_VERSION} \
98
+ # && make \
99
+ # && make install prefix=$BUILD_PREFIX )
100
touch zstd-stamp
101
}
102
0 commit comments