Add a libc++ version of ijar for prebuilt use
I'll remove the old version once we've moved over to the prebuilts. Change-Id: Ifd8d396f8b653abbe958cd34e69831a6ca378649
This commit is contained in:
parent
e6fae50455
commit
e19d451f49
|
@ -18,3 +18,17 @@ cc_binary_host {
|
||||||
// libc++ is not supported for TARGET_BUILD_APPS builds
|
// libc++ is not supported for TARGET_BUILD_APPS builds
|
||||||
stl: "libstdc++",
|
stl: "libstdc++",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cc_binary_host {
|
||||||
|
srcs: [
|
||||||
|
"classfile.cc",
|
||||||
|
"ijar.cc",
|
||||||
|
"zip.cc",
|
||||||
|
],
|
||||||
|
cflags: [
|
||||||
|
"-Wall",
|
||||||
|
"-Werror",
|
||||||
|
],
|
||||||
|
host_ldlibs: ["-lz"],
|
||||||
|
name: "ijar_libc++",
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue