caam

changeset 16:9dcdb591a0dc

Do not pass LDFLAGS to cc(clang)
author HIROSE Yuuji <yuuji@gentei.org>
date Wed, 11 Mar 2015 08:24:14 +0900
parents f1f17c1c87f8
children 9e9c063c92cf
files wrap/gcc
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
line diff
     1.1 --- a/wrap/gcc	Wed Mar 11 08:22:07 2015 +0900
     1.2 +++ b/wrap/gcc	Wed Mar 11 08:24:14 2015 +0900
     1.3 @@ -12,5 +12,7 @@
     1.4      IFS=$oifs
     1.5    fi
     1.6  fi
     1.7 -# echo cmd=$CAAM_GCC $ldf "$@"
     1.8 -exec $CAAM_GCC $ldf "$@"
     1.9 +#echo cmd=$CAAM_GCC $ldf "$@" 1>&2
    1.10 +exec $CAAM_GCC "$@"
    1.11 +# Do NOT pass LDFLAGS to cc(clang).  It produces annoying warnings.
    1.12 +#exec $CAAM_GCC $ldf "$@"