forked from
me.webbeef.org/browser.html
Rewild Your Web
1--- original
2+++ modified
3@@ -60,6 +60,8 @@
4 return AndroidTarget(target_triple)
5 elif "ohos" in target_triple:
6 return OpenHarmonyTarget(target_triple)
7+ elif "aarch64-unknown-linux-gnu" in target_triple:
8+ return CrossBuildTarget(target_triple)
9 elif target_triple != host_triple:
10 raise Exception(f"Unknown build target {target_triple}")
11 return BuildTarget(host_triple)