nandi/frqpublic Fork 0
9cc5d9980472e2eee5e25ee46663aa0cf4eb1cbe
Commits
Clone
git clone https://git.rickub.com/nandi/frq.git
git clone ssh://git@rickub.com/nandi/frq.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

Build the APK with buck2, from pins rather than from a second checkout a71ef8f · on 9cc5d9980472e2eee5e25ee46663aa0cf4eb1cbe · nandi · 18d ago
android-ndk.dotslash · 55 lines · 1.9 KBGDScript3 Blame HistoryRaw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env dotslash

// The NDK, pinned the way every other tool here is.
//
// bin/clang is the path named, but the whole archive is what matters: the
// driver finds its sysroot, its resource directory and the rest of the LLVM
// binaries relative to itself, so the tree has to travel intact. The name is
// only what makes this a runnable shim as well as a manifest.
//
// Google publishes SHA-1 for these and nothing else, so the digests below were
// taken from the archives and checked against the SHA-1 in repository2-3.xml.
//
// There is no Linux/arm64 NDK. Both macOS entries are the x86_64 prebuilt,
// which is what Google ships  an arm64 host runs it under Rosetta.
{
  "name": "android-ndk-r29",
  "platforms": {
    "linux-x86_64": {
      "size": 783549481,
      "hash": "sha256",
      "digest": "4abbbcdc842f3d4879206e9695d52709603e52dd68d3c1fff04b3b5e7a308ecf",
      "format": "zip",
      "path": "android-ndk-r29/toolchains/llvm/prebuilt/linux-x86_64/bin/clang",
      "providers": [
        {
          "url": "https://dl.google.com/android/repository/android-ndk-r29-linux.zip"
        }
      ]
    },
    "macos-x86_64": {
      "size": 1049519838,
      "hash": "sha256",
      "digest": "ce5e4b100ec5fe5be4eb3edcb2c02528824ff9cda3860f5304619be6c3da34d3",
      "format": "zip",
      "path": "android-ndk-r29/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang",
      "providers": [
        {
          "url": "https://dl.google.com/android/repository/android-ndk-r29-darwin.zip"
        }
      ]
    },
    "macos-aarch64": {
      "size": 1049519838,
      "hash": "sha256",
      "digest": "ce5e4b100ec5fe5be4eb3edcb2c02528824ff9cda3860f5304619be6c3da34d3",
      "format": "zip",
      "path": "android-ndk-r29/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang",
      "providers": [
        {
          "url": "https://dl.google.com/android/repository/android-ndk-r29-darwin.zip"
        }
      ]
    }
  }
}