You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you need a portable standalone executable of heimdall (in case your experiment machine does not have internet or cannot install python packages), then:
44
+
45
+
```console
46
+
$ make standalone # Executables are under dist/
47
+
$ cd ..
48
+
$ tar -zcvf heimdall.tar.gz heimdall/
49
+
$ scp heimdall.tar.gz <remote-machine>
50
+
```
51
+
52
+
Then, on the remote machine:
53
+
54
+
```console
55
+
$ tar -zxvf heimdall.tar.gz
56
+
$ cd heimdall
57
+
$ ./dist/heimdall <sub-commands>
58
+
```
59
+
60
+
> [!NOTE]
61
+
> Make sure the heimdall source repo is copied with the standalone binary, because all the C/C++ source code are needed and they are not part of the standalone binary
0 commit comments