Files
wehub-resource-sync 8a852e4b4e
cffconvert / validate (push) Has been skipped
License Check / license-check (push) Failing after 2s
chore: import upstream snapshot with attribution
2026-07-13 12:14:16 +08:00

13 lines
356 B
Python

"""Build macros for SHLO reference library."""
def shlo_ref_logging_linkopts():
"""Defines linker flags to enable logging"""
return select({
"//tensorflow:android": ["-llog"],
"//conditions:default": [],
})
def shlo_ref_linkopts():
"""Defines linker flags for linking SHLO binary"""
return shlo_ref_logging_linkopts()