-
Notifications
You must be signed in to change notification settings - Fork 0
fixed some links, adjusted grammar, fixed some spelling mistakes. #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
With "smallest," yes.
Can you please try to run To validate the installation, you can use the "Hello World" tutorial. Also, I copied the structure almost completely from the Rust book, so probably mentioning this is a good thing to do |
|
Okay I got it to run! .dll that were required: libffi-8 after adding each .dll to infc\dist the infc.exe launched without errors but the cmd window would close instantly. infc.exe -V, |
|
will try the hello world tutorial now. Was updating progress first Seems I'm stuck on step trying to create .wasm file To compile an On Windows: > infc hello_world.infAs a result, the compiler will generate a Wasm binary module named When running > infc hello_world.infit just opens the .inf in notepad. infc hello_world.infAccess is denied Even if ran as admin is same result
infc.exe hello_world.infAnything I am doing wrong or should change @0xGeorgii ? |
|
I can't even run the help command anymore... access denied. |
|
try to |
|
comments section added here: 4e16e1d |
|
Seems to be the steps taken for acquiring dll files manually for windows infc version @0xGeorgii To help you document or replicate this testing scenario, here is the reconstructed chronological order of the steps taken, the logic used, and the methods employed to acquire each specific library. Phase 1: Identifying the SourceThe initial goal was to resolve dependencies for a software compiled using the GCC/MinGW-w64 toolchain. We chose the UCRT (Universal C Runtime) flavor, which is the modern standard for Windows 10/11. 1. |
| Order | DLL File | Source Package (MSYS2) | Purpose |
|---|---|---|---|
| 1 | libwinpthread-1.dll |
mingw-w64-ucrt-x86_64-libwinpthread |
Threading Support |
| 2 | libffi-8.dll |
mingw-w64-ucrt-x86_64-libffi |
Language Interoperability |
| 3 | libgcc_s_seh-1.dll |
mingw-w64-ucrt-x86_64-gcc-libs |
GCC Runtime |
| 4 | libzstd.dll |
mingw-w64-ucrt-x86_64-zstd |
Zstd Compression |
| 5 | zlib1.dll |
mingw-w64-ucrt-x86_64-zlib |
Data Compression |
Would you like me to generate a simple .bat script that checks for the presence of these files in a folder to automate this verification in the future?
yes, please but powershell |



1 comment not present in changes
in functions.md
As we have already done in the Hello World chapter, the minimal Inference program is a function.
Could the word minimal be replaced with "smallest" or "the most minimal"?