diff options
Diffstat (limited to 'media/libtremor/lib/moz.build')
-rw-r--r-- | media/libtremor/lib/moz.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/media/libtremor/lib/moz.build b/media/libtremor/lib/moz.build index 60523504eb..ded81ee72b 100644 --- a/media/libtremor/lib/moz.build +++ b/media/libtremor/lib/moz.build @@ -1,4 +1,5 @@ # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- +# vim: set filetype=python: # 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/. @@ -23,7 +24,7 @@ FINAL_LIBRARY = 'gkmedias' if CONFIG['OS_ARCH'] == 'AIX': DEFINES['alloca'] = '__alloca' -if CONFIG['TARGET_CPU'] == 'arm' and CONFIG['GNU_CC'] and not CONFIG['MOZ_THUMB2']: +if CONFIG['CPU_ARCH'] == 'arm' and CONFIG['CC_TYPE'] in ('clang', 'gcc') and not CONFIG['MOZ_THUMB2']: DEFINES['_ARM_ASSEM_'] = True LOCAL_INCLUDES += [ |