f347c51226
Same as the last CL, now with -Wno-over-aligned. CQ_INCLUDE_TRYBOTS=master.client.skia.compile:Build-Ubuntu-Clang-x86-Debug-GN_Android-Trybot BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2369033002 TBR=bungeman@google.com NOTREECHECKS=true Review-Url: https://codereview.chromium.org/2369033002
18 lines
373 B
Python
Executable File
18 lines
373 B
Python
Executable File
#!/usr/bin/env python
|
|
#
|
|
# Copyright 2016 Google Inc.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import subprocess
|
|
import sys
|
|
cc,cxx = sys.argv[1:3]
|
|
|
|
if ('clang' in subprocess.check_output([cc, '--version']) and
|
|
'clang' in subprocess.check_output([cxx, '--version'])):
|
|
print 'true'
|
|
else:
|
|
print 'false'
|
|
|