euler314 commited on
Commit
9361a16
·
verified ·
1 Parent(s): 8cc36e4

Update packages.txt

Browse files
Files changed (1) hide show
  1. packages.txt +25 -6
packages.txt CHANGED
@@ -1,11 +1,30 @@
 
 
 
 
1
  build-essential
2
  gcc
3
  g++
4
- ccache
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  patchelf
6
- zip
7
- unzip
8
  file
9
- curl
10
- wget
11
- dos2unix
 
 
 
 
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