2017-03-01 05:10:14 +03:00
|
|
|
if test -d "$topsrcdir/clang/bin"; then
|
|
|
|
CLANG_DIR=`cd "$topsrcdir/clang/bin" ; pwd`
|
|
|
|
export PATH="${CLANG_DIR}:${PATH}"
|
2018-08-02 02:26:13 +03:00
|
|
|
mk_export_correct_style PATH
|
2018-08-02 00:59:23 +03:00
|
|
|
|
|
|
|
if $(cd $topsrcdir/clang/lib/clang/* && test -d lib/windows); then
|
|
|
|
CLANG_LIB_DIR="$(cd $topsrcdir/clang/lib/clang/* && cd lib/windows && pwd)"
|
|
|
|
export LIB=$LIB:$CLANG_LIB_DIR
|
|
|
|
mk_export_correct_style LIB
|
|
|
|
fi
|
2018-08-02 00:59:23 +03:00
|
|
|
fi
|
|
|
|
|
2016-02-07 20:02:52 +03:00
|
|
|
export CC=clang-cl
|
|
|
|
export CXX=clang-cl
|
2018-10-18 01:45:06 +03:00
|
|
|
export ENABLE_CLANG_PLUGIN=1
|