#
# The -A represents building with android mode.
#
-# The -D represents building with debug mode.
+# The -D represents building without debug mode.
#
# The -P represents building with pinephone mode.
#
local mode_compiler_value="gcc"
local mode_custom_param=
local mode_custom_value=
- local mode_debug_param=
- local mode_debug_value=
+ local mode_debug_param="-m"
+ local mode_debug_value="debug"
local mode_part=
local mode_parameter=
local mode_path=
mode_custom_param="-m"
mode_custom_value="android"
elif [[ ${p} == "-D" ]] ; then
- mode_debug_param="-m"
- mode_debug_value="debug"
+ mode_debug_param=
+ mode_debug_value=
elif [[ ${p} == "-P" ]] ; then
mode_custom_param="-m"
mode_custom_value="pinephone"