Sha256: 95a6bf90c2d841468075a2de98af31be1f0556575653527eb7f85d9537b9f752

Contents?: true

Size: 708 Bytes

Versions: 2

Compression:

Stored size: 708 Bytes

Contents

# gcc, g++ and Oracle Instant Client Basic and SDK are requred.
#
# ln libocci.so.x.x libocci.so
# ln libclntsh.so.x.x libclntsh.so
#

if [ "$JAVA_HOME" = "" ]
then
    echo "You should set the environment variable 'JAVA_HOME'."
    exit 1
fi

if [ "$OCI_PATH" = "" ]
then
    echo "You should set the environment variable 'OCI_PATH'."
    exit 1
fi

mkdir -p ../../../../lib/embulk/linux_x64

gcc -fPIC -I. -I"$JAVA_HOME/include" -I"$OCI_PATH/sdk/include" -I../../../main/cpp/common -L"$OCI_PATH" -shared ../../../main/cpp/common/embulk-output-oracle.cpp ../../../main/cpp/common/dir-path-load.cpp -locci -lclntsh -lstdc++ -o ../../../../lib/embulk/linux_x64/libembulk-output-oracle.so

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
embulk-output-oracle-0.4.1 src/main/cpp/linux/build.sh
embulk-output-oracle-0.2.4 src/main/cpp/linux/build.sh