Closed meator closed 2 months ago
The header of this shell script states that the compiler can be either cxx or clang (but it can be anything) and it states that the default VARIANT is 'dbg', which is disproved few lines below:
cxx
clang
VARIANT
'dbg'
local variant=${2:-opt} # default is optimized build
Great, thank you!
The header of this shell script states that the compiler can be either
cxx
orclang
(but it can be anything) and it states that the defaultVARIANT
is'dbg'
, which is disproved few lines below: