Skip to content

Commit

Permalink
[BAZEL] format
Browse files Browse the repository at this point in the history
  • Loading branch information
hexdae committed Nov 15, 2023
1 parent 768cd5c commit bd6a54d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ module(
)

# INTERNAL
bazel_dep(name = "aspect_bazel_lib", dev_dependency = True, version = "2.0.0")
bazel_dep(name = "bazel_skylib", dev_dependency = True, version = "1.5.0")
bazel_dep(name = "aspect_bazel_lib", version = "2.0.0", dev_dependency = True)
bazel_dep(name = "bazel_skylib", version = "1.5.0", dev_dependency = True)
2 changes: 1 addition & 1 deletion examples/cc/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ cc_library(
cc_binary(
name = "arm_elf",
srcs = ["source/main.cpp"],
deps = [":arm_library"],
copts = [
"-mcpu=cortex-a5",
"-mthumb",
Expand All @@ -30,6 +29,7 @@ cc_binary(
"-nostartfiles",
"-Wl,--entry,main",
],
deps = [":arm_library"],
)

platform_transition_filegroup(
Expand Down
2 changes: 1 addition & 1 deletion toolchain/toolchain.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ compatible_cpus = {
}

hosts = {
"darwin_x86_64": ["@platforms//os:macos"], # Also runs on apple silicon
"darwin_x86_64": ["@platforms//os:macos"], # Also runs on apple silicon
"linux_x86_64": ["@platforms//os:linux", "@platforms//cpu:x86_64"],
"linux_aarch64": ["@platforms//os:linux", "@platforms//cpu:arm64"],
"windows_x86_64": ["@platforms//os:windows", "@platforms//cpu:x86_64"],
Expand Down

0 comments on commit bd6a54d

Please sign in to comment.