mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
28 lines
770 B
Plaintext
28 lines
770 B
Plaintext
# 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"
|
|
|
|
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
|
|
|
|
# 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
|
|
|
|
ac_add_options --with-ccache
|