summaryrefslogtreecommitdiff
path: root/platform/android/platform.gyp
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-05-03 16:56:51 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-05-03 16:59:04 -0700
commit01b3eac52f810b61dc2d5f0ea7a2bfa229daa01f (patch)
treeecf23b7c35f84b0f646da67fec3ea8f55f0c7d79 /platform/android/platform.gyp
parente8e709d96d6034afcb149b269b9208ea12fb3308 (diff)
downloadqtlocation-mapboxgl-01b3eac52f810b61dc2d5f0ea7a2bfa229daa01f.tar.gz
[build] '<@(foo_static_libs)' must precede '<@(foo_ldflags)'
'<@(foo_ldflags)' typically includes -lbar arguments that the static libs depend on, and order matters for ld. The build was previously working merely by lucky ordering.
Diffstat (limited to 'platform/android/platform.gyp')
-rw-r--r--platform/android/platform.gyp12
1 files changed, 6 insertions, 6 deletions
diff --git a/platform/android/platform.gyp b/platform/android/platform.gyp
index ce243e493e..8336bd5c98 100644
--- a/platform/android/platform.gyp
+++ b/platform/android/platform.gyp
@@ -65,18 +65,18 @@
'-lGLESv2',
'-lstdc++',
'-latomic',
- '<@(nunicode_ldflags)',
'<@(nunicode_static_libs)',
- '<@(sqlite_ldflags)',
+ '<@(nunicode_ldflags)',
'<@(sqlite_static_libs)',
- '<@(zlib_ldflags)',
+ '<@(sqlite_ldflags)',
'<@(zlib_static_libs)',
- '<@(libzip_ldflags)',
+ '<@(zlib_ldflags)',
'<@(libzip_static_libs)',
- '<@(libpng_ldflags)',
+ '<@(libzip_ldflags)',
'<@(libpng_static_libs)',
- '<@(libjpeg-turbo_ldflags)',
+ '<@(libpng_ldflags)',
'<@(libjpeg-turbo_static_libs)',
+ '<@(libjpeg-turbo_ldflags)',
],
},
},