We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88509d8 commit bbdbadfCopy full SHA for bbdbadf
command-not-found.cpp
@@ -24,6 +24,20 @@
24
25
using namespace std;
26
27
+list<string> main_commands = {
28
+#ifdef __aarch64__
29
+# include "termux-packages/commands-aarch64-600a3f6.h"
30
+#elif defined __arm__
31
+# include "termux-packages/commands-arm-600a3f6.h"
32
+#elif defined __i686__
33
+# include "termux-packages/commands-i686-600a3f6.h"
34
+#elif defined __x86_64__
35
+# include "termux-packages/commands-x86_64-600a3f6.h"
36
+#else
37
+# error Failed to detect arch
38
+#endif
39
+};
40
+
41
struct info {string binary, repository;};
42
43
/* https://stackoverflow.com/a/12774387 */
0 commit comments