Skip to content
Snippets Groups Projects
Commit bca697ae authored by _yrp's avatar _yrp Committed by GitHub
Browse files

Update make-share.sh

On recent Ubuntu, 'time' is provided either by the 'time' package, or as a bash builtin. It's not present in sh, or installed by default. This causes 'pip install keystone-engine' to fail.

So, one of the following needs to happen:
-'time' package is added to the pre-reqs
-switch this script to bash
-remove the 'time' call around make

I've axed the call to 'time', but really whatever you think is best.
parent f19be804
No related branches found
No related tags found
No related merge requests found
......@@ -20,4 +20,4 @@ usage()
cmake -DBUILD_LIBS_ONLY=$BUILD_LIBS_ONLY -DLLVM_BUILD_32_BITS="$LLVM_BUILD_32_BITS" -DLLVM_LIBDIR_SUFFIX="$LLVM_LIBDIR_SUFFIX" -DCMAKE_OSX_ARCHITECTURES="$ARCH" -DCMAKE_BUILD_TYPE=$BUILDTYPE -DBUILD_SHARED_LIBS=ON -DLLVM_TARGETS_TO_BUILD="all" -G "Unix Makefiles" ..
time make -j8
make -j8
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment