diff options
author | Dan Willemsen <dwillemsen@google.com> | 2017-10-02 10:41:10 -0700 |
---|---|---|
committer | Dan Willemsen <dwillemsen@google.com> | 2017-10-02 10:41:10 -0700 |
commit | 7f7768f2c92d2730e3daae79c9cdae37249fd214 (patch) | |
tree | 48553a5640ce6a10b9593f10a8ee5eaea213e89e /NativeCode.bp | |
parent | 362d4c937c022f11bd97f687e971e8f4776f3c8a (diff) |
Rename target.linux[_x86[_64]] to target.linux_glibc[_x86[_64]]
In the future, target.linux will apply to all targets running a linux kernel
(android, linux_glibc, linux_bionic). So move all current users to the specific
linux_glibc.
There will be another cleanup pass later that will move some instances back to
target.linux if the properties should be shared with target.android and
target.linux_bionic, but target.linux needs to be removed first.
Test: out/soong/build.ninja identical before/after
Change-Id: Ib89cce2ed559701bac953c91444bedcd2aa89030
Exempt-From-Owner-Approval: build system cleanup
Diffstat (limited to 'NativeCode.bp')
-rw-r--r-- | NativeCode.bp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/NativeCode.bp b/NativeCode.bp index 050f29fdc9..3f296fa3fa 100644 --- a/NativeCode.bp +++ b/NativeCode.bp @@ -113,7 +113,7 @@ cc_defaults { static_libs: ["libfdlibm"], target: { - linux: { + linux_glibc: { cflags: [ // Sigh. "-D_LARGEFILE64_SOURCE", "-D_GNU_SOURCE", |