You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
421 B
17 lines
421 B
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
INCLUDE_INSTALL_DIR="$1"/include
|
|
LIBRARY_INSTALL_DIR="$1"/lib
|
|
|
|
mkdir -p $INCLUDE_INSTALL_DIR
|
|
mkdir -p $LIBRARY_INSTALL_DIR
|
|
|
|
cp -vr include/serial include/tbb $INCLUDE_INSTALL_DIR
|
|
|
|
cp -vr ../tbb2019_20191006oss/lib/intel64/gcc4.8/lib* $LIBRARY_INSTALL_DIR
|
|
|
|
sudo ln -s ${LIBRARY_INSTALL_DIR}/libtbb.so.2 /usr/local/lib/libtbb.so.2
|
|
sudo ln -s ${LIBRARY_INSTALL_DIR}/libtbb.so.12 /usr/local/lib/libtbb.so.12
|