Commit afa1aa56 authored by Robert Schmidt's avatar Robert Schmidt

FINISH: Compiler options

parent 2922f195
......@@ -478,9 +478,11 @@ function main() {
if [ "$DEADLINE_SCHEDULER_FLAG_USER" = "" ]; then
case "$HW" in
"EXMIMO")
CMAKE_CMD+=" -DDEADLINE_SCHEDULER=True"
DEADLINE_SCHEDULER_FLAG_USER="True"
;;
*)
CMAKE_CMD+=" -DDEADLINE_SCHEDULER=False"
DEADLINE_SCHEDULER_FLAG_USER="False"
;;
esac
......@@ -488,6 +490,7 @@ function main() {
#Disable CPU Affinity for deadline scheduler
if [ "$DEADLINE_SCHEDULER_FLAG_USER" = "True" ] ; then
CMAKE_CMD+=" -DCPU_AFFINITY=False"
CPU_AFFINITY_FLAG_USER="False"
fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment