init, basic glogg clone

This commit is contained in:
2025-12-02 18:30:12 +01:00
parent fb9967ea41
commit e60f2bf319
26 changed files with 6512 additions and 0 deletions

15
Cross.toml Normal file
View File

@@ -0,0 +1,15 @@
# Cross-compilation configuration for the 'cross' tool
# Windows GNU target (MinGW) - fully supported
[target.x86_64-pc-windows-gnu]
# Use edge image with newer GLIBC to avoid build script issues
image = "ghcr.io/cross-rs/x86_64-pc-windows-gnu:edge"
# Ensure build scripts run in the container
pre-build = [
"dpkg --add-architecture i386",
]
# Note: MSVC target is not supported by cross from Linux
# MSVC requires proprietary Microsoft tools that only run on Windows
# Use the GNU target for Windows cross-compilation from Linux