瀏覽代碼

Merge topic 'update-regenerate-lexers'

a3025e2f9b Utilities/Scripts: Update regenerate-lexers.bash

Acked-by: Kitware Robot <[email protected]>
Merge-request: !5316
Brad King 5 年之前
父節點
當前提交
b1898bf975
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      Utilities/Scripts/regenerate-lexers.bash

+ 4 - 1
Utilities/Scripts/regenerate-lexers.bash

@@ -9,6 +9,8 @@ fi
 
 pushd "${BASH_SOURCE%/*}/../../Source/LexerParser" > /dev/null
 
+extra_args_CommandArgument="--never-interactive --batch"
+
 for lexer in            \
     CommandArgument     \
     CTestResourceGroups \
@@ -22,8 +24,9 @@ do
     in_file=cm${lexer}Lexer.in.l
 
     if [[ (${in_file} -nt ${cxx_file}) || (${in_file} -nt ${h_file}) || (${forced} -gt 0) ]]; then
+    extra_args=`eval echo \\${extra_args_\${lexer}}`
     echo "Generating Lexer ${lexer}"
-        flex --nounistd -DFLEXINT_H --noline --header-file=${h_file} -o${cxx_file} ${in_file}
+        flex --nounistd ${extra_args} -DFLEXINT_H --noline --header-file=${h_file} -o${cxx_file} ${in_file}
         sed -i 's/\s*$//'                       ${h_file} ${cxx_file}   # remove trailing whitespaces
         sed -i '${/^$/d;}'                      ${h_file} ${cxx_file}   # remove blank line at the end
         sed -i '1i#include "cmStandardLexer.h"' ${cxx_file}             # add cmStandardLexer.h include