diff options
author | Jin Qian <jinqian@google.com> | 2017-07-12 15:18:33 -0700 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2018-02-26 12:23:00 -0500 |
commit | 0a3d8041892cc53c7ea1414c8dc2b274b9956daa (patch) | |
tree | 2d60585dc31d1b04accb3520751550f6dae52179 /lib/support | |
parent | 2d545e3762636a1f5d4be5ee831c3d188d007ed5 (diff) | |
download | e2fsprogs-0a3d8041892cc53c7ea1414c8dc2b274b9956daa.tar.gz |
AOSP: build mke2fs for windows using android mingw library
Bug: 23686092
Change-Id: I4c7b0c69e3e3c48321d3a0a964ad65c87fc32bbd
From AOSP commit: 83da0276c3ff0a1c33f9042798b319542e254060
Diffstat (limited to 'lib/support')
-rw-r--r-- | lib/support/Android.bp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/support/Android.bp b/lib/support/Android.bp index 24414a45..4a89b8f3 100644 --- a/lib/support/Android.bp +++ b/lib/support/Android.bp @@ -18,10 +18,15 @@ cc_library { ], shared_libs: [ "libext2fs", - "libext2_com_err", "libext2_blkid", ], + target: { + windows: { + enabled: true + }, + }, + cflags: [ "-W", "-Wall", |