Update packages.txt
Browse files- packages.txt +25 -6
packages.txt
CHANGED
@@ -1,11 +1,30 @@
|
|
|
|
|
|
|
|
|
|
1 |
build-essential
|
2 |
gcc
|
3 |
g++
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
patchelf
|
6 |
-
zip
|
7 |
-
unzip
|
8 |
file
|
9 |
-
|
10 |
-
|
11 |
-
|
|
|
|
|
|
|
|
1 |
+
# System packages for Nuitka compilation with MinGW-w64 support
|
2 |
+
# These should be pre-installed in the Hugging Face Spaces Docker image
|
3 |
+
|
4 |
+
# Core build tools
|
5 |
build-essential
|
6 |
gcc
|
7 |
g++
|
8 |
+
|
9 |
+
# Python development headers
|
10 |
+
python3-dev
|
11 |
+
|
12 |
+
# MinGW-w64 for Windows cross-compilation
|
13 |
+
mingw-w64
|
14 |
+
gcc-mingw-w64-x86-64
|
15 |
+
g++-mingw-w64-x86-64
|
16 |
+
|
17 |
+
# Additional MinGW packages for complete toolchain
|
18 |
+
binutils-mingw-w64-x86-64
|
19 |
+
mingw-w64-tools
|
20 |
+
|
21 |
+
# Useful debugging and testing tools
|
22 |
+
gdb
|
23 |
patchelf
|
|
|
|
|
24 |
file
|
25 |
+
|
26 |
+
# Wine for testing Windows executables (optional)
|
27 |
+
wine
|
28 |
+
|
29 |
+
# Git for version control
|
30 |
+
git
|