代码拉取完成,页面将自动刷新
macos…
# Description:
# sqlite3 is a serverless SQL RDBMS.
licenses(["unencumbered"]) # Public Domain
SQLITE_COPTS = [
"-DSQLITE_ENABLE_JSON1",
"-DHAVE_DECL_STRERROR_R=1",
"-DHAVE_STDINT_H=1",
"-DHAVE_INTTYPES_H=1",
"-D_FILE_OFFSET_BITS=64",
"-D_REENTRANT=1",
] + select({
"@org_tensorflow//tensorflow:windows": [
"-DSQLITE_MAX_TRIGGER_DEPTH=100",
],
"@org_tensorflow//tensorflow:macos": [
"-Os",
"-DHAVE_GMTIME_R=1",
"-DHAVE_LOCALTIME_R=1",
"-DHAVE_USLEEP=1",
],
"//conditions:default": [
"-Os",
"-DHAVE_FDATASYNC=1",
"-DHAVE_GMTIME_R=1",
"-DHAVE_LOCALTIME_R=1",
"-DHAVE_POSIX_FALLOCATE=1",
"-DHAVE_USLEEP=1",
],
})
# Production build of SQLite library that's baked into TensorFlow.
cc_library(
name = "org_sqlite",
srcs = ["sqlite3.c"],
hdrs = [
"sqlite3.h",
"sqlite3ext.h",
],
copts = SQLITE_COPTS,
defines = [
# This gets rid of the bloat of deprecated functionality. It
# needs to be listed here instead of copts because it's actually
# referenced in the sqlite3.h file.
"SQLITE_OMIT_DEPRECATED",
],
linkopts = select({
"@org_tensorflow//tensorflow:windows": [],
"//conditions:default": [
"-ldl",
"-lpthread",
],
}),
visibility = ["//visibility:public"],
)
# This is a Copybara sync helper for Google.
py_library(
name = "python",
srcs_version = "PY2AND3",
visibility = ["//visibility:public"],
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。