mirror of
https://github.com/google/flatbuffers.git
synced 2026-07-02 08:08:19 +00:00
Fix linker errors on (Free|Open)BSD. (#6860)
* Fix linker errors on (Free|Open)BSD. * Adds a TODO for the FreeBSD linker flags: -lm and moves platform config to main BUILD.bazel
This commit is contained in:
committed by
GitHub
parent
f63c130c28
commit
2dd2126379
14
BUILD.bazel
14
BUILD.bazel
@@ -10,6 +10,20 @@ exports_files([
|
||||
"LICENSE",
|
||||
])
|
||||
|
||||
config_setting(
|
||||
name = "platform_freebsd",
|
||||
constraint_values = [
|
||||
"@platforms//os:freebsd",
|
||||
],
|
||||
)
|
||||
|
||||
config_setting(
|
||||
name = "platform_openbsd",
|
||||
constraint_values = [
|
||||
"@platforms//os:openbsd",
|
||||
],
|
||||
)
|
||||
|
||||
# Public flatc library to compile flatbuffer files at runtime.
|
||||
cc_library(
|
||||
name = "flatbuffers",
|
||||
|
||||
Reference in New Issue
Block a user