diff --git a/build/make/gen_msvs_proj.sh b/build/make/gen_msvs_proj.sh index 4e803b81e91696aaea857f88ea688ba5858aba19..d5c57d8f7103d03a909df0e860594b6823e3302f 100755 --- a/build/make/gen_msvs_proj.sh +++ b/build/make/gen_msvs_proj.sh @@ -174,7 +174,8 @@ for opt in "$@"; do -*) die_unknown $opt ;; *) - file_list[${#file_list[@]}]="$(fix_path $opt)" + # The paths in file_list are fixed outside of the loop. + file_list[${#file_list[@]}]="$opt" case "$opt" in *.asm) uses_asm=true ;; @@ -182,6 +183,10 @@ for opt in "$@"; do ;; esac done + +# Make one call to fix_path for file_list to improve performance. +fix_file_list + outfile=${outfile:-/dev/stdout} guid=${guid:-`generate_uuid`} asm_use_custom_step=false diff --git a/build/make/gen_msvs_vcxproj.sh b/build/make/gen_msvs_vcxproj.sh index 8529eed2431742c9908a581daa98052062fa5d04..6259640c5d48e60ffd73fd14a380e6190028e005 100755 --- a/build/make/gen_msvs_vcxproj.sh +++ b/build/make/gen_msvs_vcxproj.sh @@ -196,7 +196,8 @@ for opt in "$@"; do -*) die_unknown $opt ;; *) - file_list[${#file_list[@]}]="$(fix_path $opt)" + # The paths in file_list are fixed outside of the loop. + file_list[${#file_list[@]}]="$opt" case "$opt" in *.asm|*.s) uses_asm=true ;; @@ -204,6 +205,10 @@ for opt in "$@"; do ;; esac done + +# Make one call to fix_path for file_list to improve performance. +fix_file_list + outfile=${outfile:-/dev/stdout} guid=${guid:-`generate_uuid`} asm_use_custom_step=false diff --git a/build/make/msvs_common.sh b/build/make/msvs_common.sh index eb2eb7bcfc236a66561da8e7f7dd31d16d001b19..90c14888c24be28410eb1d41b084780d2ae5d70a 100644 --- a/build/make/msvs_common.sh +++ b/build/make/msvs_common.sh @@ -13,7 +13,7 @@ if [ "$(uname -o 2>/dev/null)" = "Cygwin" ] \ && cygpath --help >/dev/null 2>&1; then FIXPATH='cygpath -m' else - FIXPATH='echo' + FIXPATH='echo_path' fi die() { @@ -27,8 +27,23 @@ die_unknown(){ exit 1 } +echo_path() { + for path; do + echo "$path" + done +} + +# Output one, possibly changed based on the system, path per line. fix_path() { - $FIXPATH "$1" + $FIXPATH "$@" +} + +# Corrects the paths in file_list in one pass for efficiency. +fix_file_list() { + # TODO(jzern): this could be more generic and take the array as a param. + files=$(fix_path "${file_list[@]}") + local IFS=$'\n' + file_list=($files) } generate_uuid() {