2012-09-05 12:09:50 -07: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 08:28:41 -07: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-05 12:47:25 -08: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
|
|
|
|
|
2012-07-20 15:36:49 -07:00
|
|
|
ac_add_options --with-ccache
|