Skip to content

Instantly share code, notes, and snippets.

View Mohido's full-sized avatar

Mohammed Al-Mahdawi Mohido

  • Netherlands
View GitHub Profile
@Mohido
Mohido / wine-compilation.md
Created August 17, 2025 21:49
Easiest Way to Compile Wine

Summary

Compiling Wine is just a pain. Libraries and dependencies will keep popping whenever you hit ./configure but there is a trick to install all dependencies in a single knock-out combo!

The trick is simple, you add the package to your apt-source repositories (whatever package manager you are using). Then install the dependencies, download the repository and configure wine with --enable-win64. Finally compile it.

Build Wine x64

@Mohido
Mohido / C_CPP_CLANG_VSCODE.md
Last active December 27, 2022 01:25
Setting Up Visual Code for C/C++ Development With CLANG

Pre-Requisits:

Setting Up VSCode:

  1. After Downloading VScode, install the foollowing VSCode extensions:
  1. Craete a folder called .vscode in your working directory.
  2. The C/C++ IntelliSense Debugger settings can be set based on the c_cpp_propoerties.json and launch.json files which the developer must create in the ".vscode" folder. The files content are explained below.