mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-02-03 09:23:58 +00:00
[tools.testspr] fix declare array var
This commit is contained in:
parent
3fef178b7c
commit
db70dfc947
2 changed files with 7 additions and 14 deletions
|
@ -18,10 +18,8 @@ width=16
|
||||||
height=16
|
height=16
|
||||||
tile_width=16
|
tile_width=16
|
||||||
tile_height=16
|
tile_height=16
|
||||||
declare -a user_macros
|
declare -a user_macros=()
|
||||||
user_macros=()
|
declare -a include_paths=()
|
||||||
declare -a include_paths
|
|
||||||
include_paths=()
|
|
||||||
max_procs=1
|
max_procs=1
|
||||||
force=0
|
force=0
|
||||||
use_help=0
|
use_help=0
|
||||||
|
|
|
@ -14,19 +14,14 @@ gcc_version="."
|
||||||
clang_version="."
|
clang_version="."
|
||||||
gcc_root="/usr/local"
|
gcc_root="/usr/local"
|
||||||
clang_root="/usr/local"
|
clang_root="/usr/local"
|
||||||
declare -a user_macros
|
declare -a user_macros=()
|
||||||
user_macros=()
|
declare -a include_paths=()
|
||||||
declare -a include_paths
|
|
||||||
include_paths=()
|
|
||||||
max_procs=1
|
max_procs=1
|
||||||
force=0
|
force=0
|
||||||
use_help=0
|
use_help=0
|
||||||
declare -a common_options
|
declare -a common_options=()
|
||||||
common_options=()
|
declare -a version_options=()
|
||||||
declare -a version_options
|
declare -A version_specific_options=(
|
||||||
version_options=()
|
|
||||||
declare -A version_specific_options
|
|
||||||
version_specific_options=(
|
|
||||||
[clang-3.3]='-ftemplate-depth=512'
|
[clang-3.3]='-ftemplate-depth=512'
|
||||||
)
|
)
|
||||||
test_cpp=$(cd $(dirname $0); pwd)/test.cpp
|
test_cpp=$(cd $(dirname $0); pwd)/test.cpp
|
||||||
|
|
Loading…
Add table
Reference in a new issue