#
# Copyright 2019 Xilinx Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

#!/bin/bash
set -e
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "$DIR"

./update_submodule.sh

build_arch=${1:-native}
build_type=${2:-debug}
build_dir=build_${build_arch}_${build_type}
rm -fr $build_dir 2>/dev/null || true
mkdir -p $build_dir
cd $build_dir
if test "$build_arch" != "native"; then
    build_test_option="-DCMAKE_TOOLCHAIN_FILE=cmake/${build_arch}_tool_chain.cmake"
fi

cmake ${build_arch_option} \
      -DCMAKE_BUILD_TYPE=${build_type} \
      -DCMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX} \
      ..

make -j VERBOSE=1
make install
