Questions tagged [mingw32]

MinGW(32), a contraction of minimalist GNU for Windows, is a minimalist development environment for native Microsoft Windows applications.

MinGW(32), a contraction of minimalist GNU for Windows, is a minimalist development environment for native Microsoft Windows applications.

MinGW(32) (or mingw32) is the old name of the project and the name is now MinGW.

Use of this tag

Tag mingw should be preferred over this tag, mingw32.

790 questions
-2
votes
1 answer

Problems with running the application using OpenSSL

Good day, colleagues. I'm building an application using OpenSSL - the application crashes with an error code: 0xc0000142. The standard application openssl.exe also crashes with this error code. What could be the trouble?
Crazy85
  • 21
  • 4
-2
votes
2 answers

mingw32: Bad function name - Kali 2.0

I'm fairly new to Linux, so go easy please. I am trying to install the Ming C Compiler on Kali 2.0 My first attempt was to do a simple "apt-get install mingw32" but the package cannot be located. I downloaded the .tar file from their website,…
Chance
  • 1
  • 2
-2
votes
2 answers

Failed to compile CGMINER (BITCOIN) on Windows

I'm trying to compile CGminer on my computer (Windows 7) using MinGW32. Ive done all of the instructions that come with cgminer however I have got to a big problem. When following the instructions below i get the errors thrown underneath that....…
Sajad Karim
  • 321
  • 3
  • 18
-3
votes
1 answer

My c++ file compiled with mingw32 successfully but not working what's problem?

I compiled c++ file with mingw32. It's compiled successfully but not working. What's the problem? my command : x86_64-w64-mingw32-g++ -o xx test.cpp
phlmox
  • 1
  • 1
-3
votes
1 answer

Error in using GCC Linker under MinGW

The compilation process is distributed in 4 stages: Preprocessor -Expanding Macros and header files. Compiler -Converts source code to assembly language Assembler -Converts assembly code to machine code Linker -links the machine code to form single…
Wasim
  • 29
  • 1
  • 10
-3
votes
1 answer

Compiler failure when compiling SciPy with MinGW+GCC

I am running some python code where some code needs gcc compilation (dont ask me I dont have a clue). I was getting the error that gcc not recognised. I installed Mingw and gcc compiler, so that was sorted. But now the assembler is creating a very…
Chaos
  • 415
  • 1
  • 3
  • 12
-3
votes
1 answer

Windows C++ SDL Eclipse error

I was following the tutorial then when i followed it all the way though but when i went to run the code it gave me the cannot find -lsdlmain. I am using the minGW compiler and can use g++ in the command line from any directory. The full console out…
Conor Groco
  • 17
  • 1
  • 4
-3
votes
2 answers

Does "complicated-nested" "for/if statement" really follow the C standards?

I've known that for (...; ...; ...) printf ("Fulfill the limits."); and if (...) printf ("Fulfill the limits."); are C standard. But for (...; ...; ...) if (...) for (...; ...; ...) if (...) for (...;…
Kevin Dong
  • 5,001
  • 9
  • 29
  • 62
-3
votes
1 answer

Get the wrong value from FileTimeToSystemTime()? Why?

FILETIME Kernel_Time; HANDLE Process = OpenProcess(PROCESS_ALL_ACCESS, FALSE, 0); GetProcessTimes(Process, NULL, NULL, &Kernel_Time, NULL); SYSTEMTIME Sys_Time; FileTimeToSystemTime(&Kernel_Time, &Sys_Time); printf("%d", Sys_Time.wYear); // WHY…
Kevin Dong
  • 5,001
  • 9
  • 29
  • 62
-6
votes
1 answer

How can I do to run a GitHub action with GCC on macOS?

I need to run a GitHub action with macOS and the GCC compiler within. I tried with: name: Set up GCC uses: egor-tensin/setup-gcc@v1 with: version: latest platform: x64 But it doesn't work on macOS. How can I do it?
JJB
  • 202
  • 4
  • 11
1 2 3
52
53