Commit afa1aa56 authored by Robert Schmidt's avatar Robert Schmidt

FINISH: Compiler options

parent 2922f195
...@@ -478,9 +478,11 @@ function main() { ...@@ -478,9 +478,11 @@ function main() {
if [ "$DEADLINE_SCHEDULER_FLAG_USER" = "" ]; then if [ "$DEADLINE_SCHEDULER_FLAG_USER" = "" ]; then
case "$HW" in case "$HW" in
"EXMIMO") "EXMIMO")
CMAKE_CMD+=" -DDEADLINE_SCHEDULER=True"
DEADLINE_SCHEDULER_FLAG_USER="True" DEADLINE_SCHEDULER_FLAG_USER="True"
;; ;;
*) *)
CMAKE_CMD+=" -DDEADLINE_SCHEDULER=False"
DEADLINE_SCHEDULER_FLAG_USER="False" DEADLINE_SCHEDULER_FLAG_USER="False"
;; ;;
esac esac
...@@ -488,6 +490,7 @@ function main() { ...@@ -488,6 +490,7 @@ function main() {
#Disable CPU Affinity for deadline scheduler #Disable CPU Affinity for deadline scheduler
if [ "$DEADLINE_SCHEDULER_FLAG_USER" = "True" ] ; then if [ "$DEADLINE_SCHEDULER_FLAG_USER" = "True" ] ; then
CMAKE_CMD+=" -DCPU_AFFINITY=False"
CPU_AFFINITY_FLAG_USER="False" CPU_AFFINITY_FLAG_USER="False"
fi 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