Add extracted tools: CitrineOS, OpenOCPP, ShapeShifter
- CitrineOS core extracted (CSMS OCPP 2.0.1) - OpenOCPP extracted (firmware OCPP 1.6J/2.0.1) - ShapeShifter library installed (pip install -e) - ShapeShifter specification extracted - EVerest extracted TODO updated with progress
This commit is contained in:
29
tools/EVerest-main/third-party/bazel/BUILD.openssl-foreign-cc.bazel
vendored
Normal file
29
tools/EVerest-main/third-party/bazel/BUILD.openssl-foreign-cc.bazel
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
load("@rules_foreign_cc//foreign_cc:defs.bzl", "configure_make")
|
||||
|
||||
filegroup(
|
||||
name = "all_srcs",
|
||||
srcs = glob(["**"]),
|
||||
)
|
||||
|
||||
configure_make(
|
||||
name = "openssl",
|
||||
configure_command = "Configure",
|
||||
configure_in_place = True,
|
||||
configure_options = [
|
||||
"linux-armv4",
|
||||
"no-shared",
|
||||
"no-afalgeng",
|
||||
"no-dynamic-engine",
|
||||
"no-tests",
|
||||
] + select({
|
||||
"@platforms//cpu:armv7": ["no-atexit"],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
lib_source = ":all_srcs",
|
||||
out_static_libs = [
|
||||
"libssl.a",
|
||||
"libcrypto.a",
|
||||
],
|
||||
targets = ["install_sw"],
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
Reference in New Issue
Block a user