mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
481f8799c6
--HG-- extra : rebase_source : 1886a2adf54d89eec4924a2aec9be1cf16e79d99
13 lines
387 B
Plaintext
13 lines
387 B
Plaintext
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
|
|
|
|
ac_add_options --enable-stdcxx-compat
|
|
ac_add_options --with-ccache
|