2012-09-05 23:09:50 +04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
. "$topsrcdir/build/mozconfig.common"
|
|
|
|
|
2012-07-20 19:28:41 +04:00
|
|
|
if [ -d "$topsrcdir/clang" ]; then
|
|
|
|
# mozilla-central based build
|
|
|
|
export CC=$topsrcdir/clang/bin/clang
|
|
|
|
export CXX=$topsrcdir/clang/bin/clang++
|
|
|
|
elif [ -d "$topsrcdir/../clang" ]; then
|
|
|
|
# comm-central based build
|
|
|
|
export CC=$topsrcdir/../clang/bin/clang
|
|
|
|
export CXX=$topsrcdir/../clang/bin/clang++
|
|
|
|
fi
|
2012-12-06 00:47:25 +04:00
|
|
|
|
|
|
|
# If not set use the system default clang
|
|
|
|
if [ -z "$CC" ]; then
|
|
|
|
export CC=clang
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If not set use the system default clang++
|
|
|
|
if [ -z "$CXX" ]; then
|
|
|
|
export CXX=clang++
|
|
|
|
fi
|
|
|
|
|
2014-04-30 01:06:09 +04:00
|
|
|
. "$topsrcdir/build/mozconfig.cache"
|