updated bbb scripts
This commit is contained in:
parent
470fe2ca88
commit
fda1462b70
@ -17,14 +17,18 @@ fi
|
|||||||
os_fsfw="linux"
|
os_fsfw="linux"
|
||||||
tgt_bsp="arm/beagleboneblack"
|
tgt_bsp="arm/beagleboneblack"
|
||||||
build_generator=""
|
build_generator=""
|
||||||
builddir="build-Debug-BBB"
|
builddir="build-Debug"
|
||||||
defines="LINUX_CROSS_COMPILE=OFF"
|
defines="LINUX_CROSS_COMPILE=OFF"
|
||||||
if [ "${OS}" = "Windows_NT" ]; then
|
if [ "${OS}" = "Windows_NT" ]; then
|
||||||
build_generator="MinGW Makefiles"
|
build_generator="MinGW Makefiles"
|
||||||
|
python="py"
|
||||||
# Could be other OS but this works for now.
|
# Could be other OS but this works for now.
|
||||||
else
|
else
|
||||||
build_generator="Unix Makefiles"
|
build_generator="Unix Makefiles"
|
||||||
|
python="python3"
|
||||||
fi
|
fi
|
||||||
|
echo "Running command (without the leading +):"
|
||||||
python3 cmake_build_config.py -o "${os_fsfw}" -g "${build_generator}" -b "debug" -t "${tgt_bsp}" \
|
set -x # Print command
|
||||||
|
${python} cmake_build_config.py -o "${os_fsfw}" -g "${build_generator}" -b "debug" -t "${tgt_bsp}" \
|
||||||
-l "${builddir}" -d "${defines}"
|
-l "${builddir}" -d "${defines}"
|
||||||
|
# set +x
|
@ -17,14 +17,19 @@ fi
|
|||||||
os_fsfw="linux"
|
os_fsfw="linux"
|
||||||
tgt_bsp="arm/beagleboneblack"
|
tgt_bsp="arm/beagleboneblack"
|
||||||
build_generator=""
|
build_generator=""
|
||||||
builddir="build-Debug-BBB"
|
builddir="build-Debug"
|
||||||
defines="LINUX_CROSS_COMPILE=ON"
|
defines="LINUX_CROSS_COMPILE=ON"
|
||||||
if [ "${OS}" = "Windows_NT" ]; then
|
if [ "${OS}" = "Windows_NT" ]; then
|
||||||
build_generator="MinGW Makefiles"
|
build_generator="MinGW Makefiles"
|
||||||
|
python="py"
|
||||||
# Could be other OS but this works for now.
|
# Could be other OS but this works for now.
|
||||||
else
|
else
|
||||||
build_generator="Unix Makefiles"
|
build_generator="Unix Makefiles"
|
||||||
|
python="python3"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo "Running command (without the leading +):"
|
||||||
|
set -x # Print command
|
||||||
python3 cmake_build_config.py -o "${os_fsfw}" -g "${build_generator}" -b "debug" -t "${tgt_bsp}" \
|
python3 cmake_build_config.py -o "${os_fsfw}" -g "${build_generator}" -b "debug" -t "${tgt_bsp}" \
|
||||||
-l "${builddir}" -d "${defines}"
|
-l "${builddir}" -d "${defines}"
|
||||||
|
# set +x
|
@ -17,14 +17,19 @@ fi
|
|||||||
os_fsfw="linux"
|
os_fsfw="linux"
|
||||||
tgt_bsp="arm/beagleboneblack"
|
tgt_bsp="arm/beagleboneblack"
|
||||||
build_generator=""
|
build_generator=""
|
||||||
builddir="build-Release-BBB"
|
builddir="build-Release"
|
||||||
defines="LINUX_CROSS_COMPILE=ON"
|
defines="LINUX_CROSS_COMPILE=ON"
|
||||||
if [ "${OS}" = "Windows_NT" ]; then
|
if [ "${OS}" = "Windows_NT" ]; then
|
||||||
build_generator="MinGW Makefiles"
|
build_generator="MinGW Makefiles"
|
||||||
|
python="py"
|
||||||
# Could be other OS but this works for now.
|
# Could be other OS but this works for now.
|
||||||
else
|
else
|
||||||
build_generator="Unix Makefiles"
|
build_generator="Unix Makefiles"
|
||||||
|
python="python3"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
python3 cmake_build_config.py -o "${os_fsfw}" -g "${build_generator}" -b "debug" -t "${tgt_bsp}" \
|
echo "Running command (without the leading +):"
|
||||||
|
set -x # Print command
|
||||||
|
python3 cmake_build_config.py -o "${os_fsfw}" -g "${build_generator}" -b "release" -t "${tgt_bsp}" \
|
||||||
-l "${builddir}" -d "${defines}"
|
-l "${builddir}" -d "${defines}"
|
||||||
|
# set +x
|
@ -17,14 +17,19 @@ fi
|
|||||||
os_fsfw="linux"
|
os_fsfw="linux"
|
||||||
tgt_bsp="arm/beagleboneblack"
|
tgt_bsp="arm/beagleboneblack"
|
||||||
build_generator=""
|
build_generator=""
|
||||||
builddir="build-Release-BBB"
|
builddir="build-Debug"
|
||||||
defines="LINUX_CROSS_COMPILE=ON"
|
defines="LINUX_CROSS_COMPILE=ON"
|
||||||
|
build_generator="Ninja"
|
||||||
if [ "${OS}" = "Windows_NT" ]; then
|
if [ "${OS}" = "Windows_NT" ]; then
|
||||||
build_generator="MinGW Makefiles"
|
python="py"
|
||||||
# Could be other OS but this works for now.
|
# Could be other OS but this works for now.
|
||||||
else
|
else
|
||||||
build_generator="Unix Makefiles"
|
|
||||||
|
python="python3"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo "Running command (without the leading +):"
|
||||||
|
set -x # Print command
|
||||||
python3 cmake_build_config.py -o "${os_fsfw}" -g "${build_generator}" -b "debug" -t "${tgt_bsp}" \
|
python3 cmake_build_config.py -o "${os_fsfw}" -g "${build_generator}" -b "debug" -t "${tgt_bsp}" \
|
||||||
-l "${builddir}" -d "${defines}"
|
-l "${builddir}" -d "${defines}"
|
||||||
|
# set +x
|
35
cmake/scripts/BeagleBoneBlack/crosscompile/ninja_release_cfg.sh
Executable file
35
cmake/scripts/BeagleBoneBlack/crosscompile/ninja_release_cfg.sh
Executable file
@ -0,0 +1,35 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
counter=0
|
||||||
|
while [ ${counter} -lt 5 ]
|
||||||
|
do
|
||||||
|
cd ..
|
||||||
|
if [ -f "cmake_build_config.py" ];then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
counter=$((counter=counter + 1))
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ "${counter}" -ge 5 ];then
|
||||||
|
echo "cmake_build_config.py not found in upper directories!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
os_fsfw="linux"
|
||||||
|
tgt_bsp="arm/beagleboneblack"
|
||||||
|
build_generator=""
|
||||||
|
builddir="build-Release"
|
||||||
|
defines="LINUX_CROSS_COMPILE=ON"
|
||||||
|
build_generator="Ninja"
|
||||||
|
if [ "${OS}" = "Windows_NT" ]; then
|
||||||
|
python="py"
|
||||||
|
# Could be other OS but this works for now.
|
||||||
|
else
|
||||||
|
|
||||||
|
python="python3"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Running command (without the leading +):"
|
||||||
|
set -x # Print command
|
||||||
|
python3 cmake_build_config.py -o "${os_fsfw}" -g "${build_generator}" -b "release" -t "${tgt_bsp}" \
|
||||||
|
-l "${builddir}" -d "${defines}"
|
||||||
|
# set +x
|
Loading…
Reference in New Issue
Block a user