[gardening] Fix simriscv32 build

Bug: https://github.com/dart-lang/sdk/issues/54434
Change-Id: I923ed41448e440e17acc39beee5dd49a9de382fd
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/343200
Auto-Submit: Daco Harkes <dacoharkes@google.com>
Reviewed-by: Slava Egorov <vegorov@google.com>
Commit-Queue: Daco Harkes <dacoharkes@google.com>
Commit-Queue: Slava Egorov <vegorov@google.com>
This commit is contained in:
Daco Harkes
2023-12-21 12:39:54 +00:00
committed by Commit Queue
parent d2fc240a3e
commit d71d0f8733
+3 -1
View File
@@ -26,7 +26,9 @@ application_snapshot("generate_dartdev_snapshot") {
deps = [ "../dds:dds" ]
# DDS should be run from AOT snapshot on all architectures except IA32/X86.
if (dart_target_arch != "ia32" && dart_target_arch != "x86") {
# TODO(https://dartbug.com/54434): Fix simriscv32 AOT.
if (dart_target_arch != "ia32" && dart_target_arch != "x86" &&
dart_target_arch != "riscv32") {
deps += [ "../dds:dds_aot" ]
}