Questions tagged [mingw-w64]

The MinGW-w64 (MinGW fork) project is a complete runtime environment for gcc to produce binaries native to Windows 64-bit and 32-bit operating systems.

Mingw-w64 delivers runtime, headers and libs for developing both 64 bit (x64) and 32 bit (x86) windows applications using GCC and other free software compilers.

Features:

  • Compiler toolchain hosts natively
  • Supports Native TLS Callbacks
  • Supports Wide-Character Startup (-municode)
  • Supports 32-bit and 64-bit Windows i386/x64
  • Supports Multilib toolchains
  • Supports bleeding edge gcc/binutils

Official Website: http://mingw-w64.sourceforge.net/index.php

Useful Links:

Note: if you are using 'default' MinGW:

1587 questions
0
votes
0 answers

Cmake windows mingw-w64 link OPENSSL_LIB error

There is much info in google about "linking with cmake", but nothing helped me. I am trying to build webSocket server on Windows 7 x32 ang mingw-w64. It needs openssl. I've downloaded (with recomendation of cmake module) windows openssl binaries…
user3003873
  • 543
  • 1
  • 4
  • 21
0
votes
1 answer

Use GCC on Linux to cross-compile Qt apps for Windows

Ideally, I want to compile our QT-based apps, which also link other third-party libraries, on 64-bit Linux using GCC, but for a 64-bit Windows target. Again ideally, I want the result to run on 64-bit Windows without any additional runtime support,…
ThomasMcLeod
  • 7,603
  • 4
  • 42
  • 80
0
votes
1 answer

GeoIP C API build and patching error

I have been trying to build the api in (windows 7 64bit) with msys2 using x86_64-w64-mingw32 but i keep geting errors note that this errors wont happen when i use 32bit nmake but i need to build it in 64bit using msys2 and x86_64-w64-mingw32 Please…
POQDavid
  • 195
  • 1
  • 15
0
votes
1 answer

Mingw-w64 + codeblocks : No such file or directory

I have installed mingw-w64 to have a 64-bits compiler. I used Code Blocks as IDE and i had before a 32 bits mingw which is working very well. My OS is windows 8.1. I have followed this tutorial : https://www.youtube.com/watch?v=1nsjGxy1w0U And the…
Geekorino
  • 1
  • 1
  • 1
0
votes
0 answers

Why is MinGW-w64 complaining that IID_IUnknown et al are not pointers in calls to IsEqualIID() and LresultFromObject()?

I want to add accessibility to my custom Windows control, and because I still need to support all Windows XP versions I have to use MSAA. (I understand that some people will think we are the ones who have to push people away from XP by writing…
andlabs
  • 11,290
  • 1
  • 31
  • 52
0
votes
1 answer

Header or something to add to a code to detect if folder exist

I search to test if a folder exists. I have found the following code in the question: Check folder path bool directory_exists( const std::string &directory ) { if( !directory.empty() ) { if( access(directory.c_str(), 0) == 0…
user2964288
  • 83
  • 1
  • 11
0
votes
1 answer

Building marisa-trie shared library with msys/mingw64

Trying to build marisa-trie library in msys using MinGW64. ./configure --prefix=/e/SDK/env-gcc-4.8-64bit --enable-sse2 --enable-sse3 --enable-ssse3 --enable-sse4 --enable-sse4.1 --enable-sse4.2 make That produces only a static library, no shared.…
0
votes
1 answer

compiling Win64 bit library using MingW64 compiled libCurl

I need 64 bit windows library for my 64 bit library. I am not able to find any 64 bit libcurl from the libcurl community. They only provide 64 bit in MingW64 or CygWin. My problem is I dont if I can use 64 bit libCurl compiled in MingW or CygWin in…
Bhupesh Pant
  • 4,053
  • 5
  • 45
  • 70
0
votes
0 answers

How to build omniorb with mingw-w64 on Windows?

I need your help. We use omniorb in our project, but have difficulties with building it with mingw-w64 on Windows in Qt 4.8.1. May you tell me how did you do that? Thanks in advance.
MissiaL
  • 21
  • 2
0
votes
1 answer

Installation wxWidgets with mingw64

I try to get wxWidgets installed on a Windows7 x64 Machine but wxWidgets Installation doesn't even work, I cannot get a Hello World App running. I found out there are several ways to get the library installed and I tried some of them (with Cygwin…
MST
  • 41
  • 4
0
votes
1 answer

Error when trying to make file in stdlib.h "_wtoi64 and others not declared in this scope" using MinGW64 & CMake

So I tried building a project written on OSX. I'm on windows right now. I am using CMake and MinGW 64bit. "cmake -G MinGW "Makefiles"" works fine but when I try to use "mingw32-make" it results in this: Scanning dependencies of target iDemo [ 16%]…
Appuru
  • 417
  • 1
  • 6
  • 16
0
votes
1 answer

Building a library with an executable that uses it

I have a library "lib" and an executable "demo". The issue I'm having is that "demo" can't get lib_INCLUDES and lib_LIBS lib variables, set by "lib". I want them set because in demo.h I do #include and it fails to find the include. I want…
John Berger
  • 175
  • 9
0
votes
0 answers

How best to deal with libstdc++ dll and libstdc dll when cross-compiling with mingw-w64 using cmake?

I'm cross-compiling a C++ (and some C) project from Linux using Mingw-w64 (really using the MXE project), using cmake as the build system. I have come to realise that I need to either provide the dlls libstdc++ and libstdc with the resulting…
crobar
  • 2,810
  • 4
  • 28
  • 46
0
votes
1 answer

Speed difference in Python compiled with MS C vs. MinGW

On my Windows 7 machine, I use two CPython implementations: 1) WinPython distribution, which is compiled with MSC v.1500 64bit 2) MinGW-builds, which is compiled with MinGW/GCC 4.9.1 64bit I've tried the MinGW-built version to compile some C…
Pybe
  • 133
  • 8
0
votes
1 answer

Breakpoints in code::blocks not working

So, I have no idea why, but breakpoints in my code::blocks project are no longer working. I'm using MinGW-W64 compiler and GDB. I used to be able to use breakpoints, but now, for some reason, when I add them to my code they do absolutely nothing -…
Haydn V. Harach
  • 1,265
  • 1
  • 18
  • 36
1 2 3
99
100