зеркало из https://github.com/mozilla/gecko-dev.git
15 строки
441 B
Plaintext
15 строки
441 B
Plaintext
if test -d "$topsrcdir/clang/bin"; then
|
|
CLANG_DIR=`cd "$topsrcdir/clang/bin" ; pwd`
|
|
export PATH="${CLANG_DIR}:${PATH}"
|
|
mk_export_correct_style PATH
|
|
|
|
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
|
|
fi
|
|
|
|
export CC=clang-cl
|
|
export CXX=clang-cl
|