forked from openkylin/platform_build
Merge "Add a libc++ version of ijar for prebuilt use"
This commit is contained in:
commit
06f3e8349f
|
@ -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