So I compile a C++ file to an exe for my friend to test on windows, but when my friend run the file, it shows
the code execution cannot proceed because libstdc++-6.dll was not found
How can I fix this?
I compile the file on linux manjaro with mingw64 using this code:
x86_64-w64-mingw32-g++ -o main.exe main.cpp
Thank you in advance.