mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Don't enable_profiling for x86 Android. (#3848)
This somehow introduces text relocations even though we always use -fPIC.
This commit is contained in:
parent
66fbebaca3
commit
eb467a8b85
4
tools/gn
4
tools/gn
@ -156,7 +156,9 @@ def to_gn_args(args):
|
||||
gn_args['skia_use_vulkan'] = True
|
||||
gn_args['skia_vulkan_headers'] = "//third_party/vulkan/src"
|
||||
|
||||
gn_args['enable_profiling'] = args.runtime_mode != 'release'
|
||||
# We should not need a special case for x86, but this seems to introduce text relocations
|
||||
# even with -fPIC everywhere.
|
||||
gn_args['enable_profiling'] = args.runtime_mode != 'release' and args.android_cpu != 'x86'
|
||||
|
||||
return gn_args
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user