summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorJohann <johann.koenig@duck.com>2013-05-02 12:32:02 -0700
committerJohann <johann.koenig@duck.com>2013-05-02 12:32:02 -0700
commit9ebc99fcac4fe02f8814271b4904fff075b02234 (patch)
treec1446c4491fba3d94e4c1cb1446a924bc48afe15 /build
parenta288c928aecb2d23a8045d341990468592ddb4dd (diff)
downloadlibvpx-9ebc99fcac4fe02f8814271b4904fff075b02234.tar
libvpx-9ebc99fcac4fe02f8814271b4904fff075b02234.tar.gz
libvpx-9ebc99fcac4fe02f8814271b4904fff075b02234.tar.bz2
libvpx-9ebc99fcac4fe02f8814271b4904fff075b02234.zip
Add __inline__ to INLINE definition.
When using 'always_inline' 'inline' should be specified as well. Thanks to Digit for identifying this: https://chromiumcodereview.appspot.com/14820003/ Change-Id: If1647fac91b85ecabe6d3cd04290d5c08c5a11ea
Diffstat (limited to 'build')
-rwxr-xr-xbuild/make/configure.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/make/configure.sh b/build/make/configure.sh
index 23dc87f31..a7e17864b 100755
--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -1179,7 +1179,7 @@ EOF
check_cc <<EOF && INLINE="inline"
static inline function() {}
EOF
- check_cc <<EOF && INLINE="__attribute__((always_inline))"
+ check_cc <<EOF && INLINE="__inline__ __attribute__((always_inline))"
static __attribute__((always_inline)) function() {}
EOF