mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-01-22 05:30:06 -05:00
39 lines
832 B
Bash
Executable File
39 lines
832 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ $# -ne 2 ]]; then
|
|
echo "Usage: `basename $0` LOCAL_LIB_DIR LOCAL_INCLUDE_DIR"
|
|
exit 2
|
|
fi
|
|
|
|
LOCAL_LIB_DIR="$1"
|
|
LOCAL_INCLUDE_DIR="$2"
|
|
|
|
if [[ ! -d $LOCAL_LIB_DIR ]]; then
|
|
mkdir -p "$LOCAL_LIB_DIR"
|
|
fi
|
|
|
|
if [[ ! -d $LOCAL_INCLUDE_DIR ]]; then
|
|
mkdir -p "$LOCAL_INCLUDE_DIR"
|
|
fi
|
|
|
|
targetpath="/usr/lib/x86_64-linux-gnu/libOpenCL.so.1"
|
|
linkpath="$LOCAL_LIB_DIR/libOpenCL.so"
|
|
|
|
if [[ ! -e $linkpath && -e $targetpath ]]; then
|
|
ln -s "$targetpath" "$linkpath"
|
|
fi
|
|
|
|
targetpath=$(ls -d1 /usr/include/*/GL | head -n 1)
|
|
linkpath="$LOCAL_INCLUDE_DIR/GL"
|
|
|
|
if [[ ! -e $linkpath && -e $targetpath ]]; then
|
|
ln -s "$targetpath" "$linkpath"
|
|
fi
|
|
|
|
targetpath=$(ls -d1 /usr/include/*/CL | head -n 1)
|
|
linkpath="$LOCAL_INCLUDE_DIR/CL"
|
|
|
|
if [[ ! -e $linkpath && -e $targetpath ]]; then
|
|
ln -s "$targetpath" "$linkpath"
|
|
fi
|