Displaying 13 results from an estimated 13 matches for "20win64".
2014 Nov 23
1
New release
...rward to set up both i686 and x86_64 flavors of MinGW-w64.
32-bit target: http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/4.9.2/threads-posix/dwarf/
64-bit target: http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/4.9.2/threads-posix/seh/
One extracted, it's just a matter of temporarily adding the relevant
bin folder to PATH. When libogg is built, it will also be necessary to
manually move its headers and libs into the include and lib folders.
2012 Jun 18
0
[LLVMdev] [cfe-dev] RFC: "Building with MinGW on Windows" (DOC, 2ND TRY)
...e other
one should be called MinGW-w64. Also note that MinGW-w64 can target
both 32-bit and 64-bit windows!
I was also informed that nightly builds of mingw-w64 are rock solid,
so here's a link to toolchain targeting Win64
http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/rubenvb/release/
As for the rest of the document I have only one complaint that's more
a matter of style and taste. The document sounds like tutorial and is
very different from say "getting started" which is more to the point.
I'll try to be more concrete:
&quo...
2015 Jan 08
1
New version of Rtools for Windows
...on resonates with one of the
readers here. If anyone has any ideas as to how to circumvent the
issues with compat.c, I'd be very grateful.
Thank you,
Avi
[1] http://sourceforge.net/p/msys2/wiki/MSYS2%20installation/
[2] http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/4.9.2/threads-win32/seh/x86_64-4.9.2-release-win32-seh-rt_v3-rev1.7z/download
[3] https://stackoverflow.com/questions/15670169/what-is-difference-between-sjlj-vs-dwarf-vs-seh
[4] http://www.tt-forums.net/viewtopic.php?p=1034657&sid=613fa47a379ffaa0b9a9fb182a4180e3...
2014 Jun 20
4
[LLVMdev] [PATCH] Replace the Execution Engine's mutex with std::recursive_mutex
...As to popularity, compare the download graphs for 32 bit:
>
>
> http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/4.9.0/
>
> and 64 bit:
>
>
> http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/4.9.0/
>
> in 32 bit the posix version rules, whereas in 64 bit it is a close winner.
> If you go back to 4.8.2 the pattern is similar.
>
> The win32 version does not support anything thread-related so it's not
> C++11 compliant?
>
> Yaron...
2014 Jun 20
3
[LLVMdev] [PATCH] Replace the Execution Engine's mutex with std::recursive_mutex
It sounds like this version of libstdc++ doesn't support
std::recursive_mutex from C++11. This is really unfortunate, because we
were hoping that moving to C++11 would allow us to use standard, portable
threading primitives.
Does this version of MinGW have any C++11 threading support? Is it just
recursive_mutex that is missing, or do we have to avoid std::mutex,
std::call_once, etc? lld
2015 Jan 08
0
New version of Rtools for Windows
...to circumvent the
>> issues with compat.c, I'd be very grateful.
>>
>> Thank you,
>>
>> Avi
>>
>>
>> [1] http://sourceforge.net/p/msys2/wiki/MSYS2%20installation/
>> [2] http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/4.9.2/threads-win32/seh/x86_64-4.9.2-release-win32-seh-rt_v3-rev1.7z/download
>> [3] https://stackoverflow.com/questions/15670169/what-is-difference-between-sjlj-vs-dwarf-vs-seh
>> [4] http://www.tt-forums.net/viewtopic.php?p=1034657&sid=613fa47a379ffa...
2012 Jun 18
5
[LLVMdev] RFC: "Building with MinGW on Windows" (DOC, 2ND TRY)
Hi all,
Here's an updated version of my proposed "Building with MinGW on Windows"
document. In summary, the document gives a step-by-step description of how
to build LLVM + Clang on Windows WITHOUT having Microsoft Visual Studio
installed. The high-level goal of the document is to make life pleasant
for those wonderful Windows users who desire to try out LLVM and/or Clang.
I
2014 Jun 20
3
[LLVMdev] [PATCH] Replace the Execution Engine's mutex with std::recursive_mutex
...t;>
>>>
>>> http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/4.9.0/
>>>
>>> and 64 bit:
>>>
>>>
>>> http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/4.9.0/
>>>
>>> in 32 bit the posix version rules, whereas in 64 bit it is a close
>>> winner. If you go back to 4.8.2 the pattern is similar.
>>>
>>> The win32 version does not support anything thread-related so it's no...
2015 Jan 08
1
New version of Rtools for Windows
...s with compat.c, I'd be very grateful.
>>>
>>> Thank you,
>>>
>>> Avi
>>>
>>>
>>> [1] http://sourceforge.net/p/msys2/wiki/MSYS2%20installation/
>>> [2] http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/4.9.2/threads-win32/seh/x86_64-4.9.2-release-win32-seh-rt_v3-rev1.7z/download
>>> [3] https://stackoverflow.com/questions/15670169/what-is-difference-between-sjlj-vs-dwarf-vs-seh
>>> [4] http://www.tt-forums.net/viewtopic.php?p=1034657&sid=613fa4...
2015 Mar 09
1
Notes on building a gcc toolchain for Rtools (but not multilib)
On Sun, Mar 8, 2015 at 8:33 PM, Avraham Adler <avraham.adler at gmail.com> wrote:
>
> Thank you for the update, Hsiu-Khuern. Can you check how many digits
> scientific notation shows? I was able to build a 64bit version of R
> using the mingw64 4.8.4 distro, but ran into trouble with compat.c,
> and the only work-around I found ended breaking R's defualt two digit
>
2015 Jan 08
0
New version of Rtools for Windows
...s with compat.c, I'd be very grateful.
>>>
>>> Thank you,
>>>
>>> Avi
>>>
>>>
>>> [1] http://sourceforge.net/p/msys2/wiki/MSYS2%20installation/
>>> [2] http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/4.9.2/threads-win32/seh/x86_64-4.9.2-release-win32-seh-rt_v3-rev1.7z/download
>>> [3] https://stackoverflow.com/questions/15670169/what-is-difference-between-sjlj-vs-dwarf-vs-seh
>>> [4] http://www.tt-forums.net/viewtopic.php?p=1034657&sid=613fa4...
2014 Nov 23
2
New release
I'd definately recommend binaries for download as suggested by lvqcl and Janne Hyv?rinen. All the fabolous work on the code base is of little use to me if I can not find binaries at the official site.
Olav Sunde
At 12:01 23.11.2014, Janne Hyv?rinen wrote:
>On 23.11.2014 12:44, Erik de Castro Lopo wrote:
>> lvqcl wrote:
>>> 2) Do you plan to release any official binaries
2012 Jun 18
2
[LLVMdev] [cfe-dev] RFC: "Building with MinGW on Windows" (DOC, 2ND TRY)
...MinGW-w64. Also note that MinGW-w64 can target
> both 32-bit and 64-bit windows!
>
> I was also informed that nightly builds of mingw-w64 are rock solid,
> so here's a link to toolchain targeting Win64
>
> http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/rubenvb/release/
>
> As for the rest of the document I have only one complaint that's more
> a matter of style and taste. The document sounds like tutorial and is
> very different from say "getting started" which is more to the point.
> I'll try to...