Install mingw and msys to run c programs on windows
I installed MinGW by using mingw-get-inst-20111118.exe and it works but it is very slow!
I don't want to install it online, I remember that I have previously installed MinGW and msys by using two files mingw.exe and msys.exe without using the internet and it was great, but now I cant repeat what I have done and I cant find a link to mingw.exe!
Please, I want a simple steps for better offline installation?
Thanks
windows-7 mingw msys
add a comment |
I installed MinGW by using mingw-get-inst-20111118.exe and it works but it is very slow!
I don't want to install it online, I remember that I have previously installed MinGW and msys by using two files mingw.exe and msys.exe without using the internet and it was great, but now I cant repeat what I have done and I cant find a link to mingw.exe!
Please, I want a simple steps for better offline installation?
Thanks
windows-7 mingw msys
add a comment |
I installed MinGW by using mingw-get-inst-20111118.exe and it works but it is very slow!
I don't want to install it online, I remember that I have previously installed MinGW and msys by using two files mingw.exe and msys.exe without using the internet and it was great, but now I cant repeat what I have done and I cant find a link to mingw.exe!
Please, I want a simple steps for better offline installation?
Thanks
windows-7 mingw msys
I installed MinGW by using mingw-get-inst-20111118.exe and it works but it is very slow!
I don't want to install it online, I remember that I have previously installed MinGW and msys by using two files mingw.exe and msys.exe without using the internet and it was great, but now I cant repeat what I have done and I cant find a link to mingw.exe!
Please, I want a simple steps for better offline installation?
Thanks
windows-7 mingw msys
windows-7 mingw msys
edited Dec 19 '12 at 14:22
Guy Thomas
2,60292847
2,60292847
asked Dec 17 '12 at 22:29
Hesham AbouelsoaodHesham Abouelsoaod
11117
11117
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
I wrote myself a small aide-memoire the other day on how to update (or set up) my MinGW and MSYS installation for building 32 and 64 programs on Windows. I doesn't involve mingw-get so you may have to go fetch any additional stuff manually but I think it includes pretty much all you might need.
It goes like this:
MinGW Environment
- Download the latest 32 and 64 bit MinGW builds from MinGW builds on Sourceforge
eg:
http://sourceforge.net/projects/mingwbuilds/files/host-windows/releases/4.7.2/64-bit/threads-posix/sjlj/x64-4.7.2-release-posix-sjlj-rev2.7z/download
and
http://sourceforge.net/projects/mingwbuilds/files/host-windows/releases/4.7.2/32-bit/threads-posix/sjlj/x32-4.7.2-release-posix-sjlj-rev2.7z/download
Use the Posix threads sjlj version
- Unzip the 32 bit version to eg c:mingw
- Unzip the 64 bit version over the top
MSYS
- Copy MSys directory from previous installation into c:mingwmsys1.0 or get an updated version from Sourceforge and unzip it.
eg: MSYS-20111123
Add c:mingwbin and c:mingwmsys1.0bin to path
add a comment |
What I did was get mingw-get-setup from the website and installed everything (w/ g++/g) and ran g++/g commands. Don't forget to change the PATH environment to MinGW
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f520693%2finstall-mingw-and-msys-to-run-c-programs-on-windows%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I wrote myself a small aide-memoire the other day on how to update (or set up) my MinGW and MSYS installation for building 32 and 64 programs on Windows. I doesn't involve mingw-get so you may have to go fetch any additional stuff manually but I think it includes pretty much all you might need.
It goes like this:
MinGW Environment
- Download the latest 32 and 64 bit MinGW builds from MinGW builds on Sourceforge
eg:
http://sourceforge.net/projects/mingwbuilds/files/host-windows/releases/4.7.2/64-bit/threads-posix/sjlj/x64-4.7.2-release-posix-sjlj-rev2.7z/download
and
http://sourceforge.net/projects/mingwbuilds/files/host-windows/releases/4.7.2/32-bit/threads-posix/sjlj/x32-4.7.2-release-posix-sjlj-rev2.7z/download
Use the Posix threads sjlj version
- Unzip the 32 bit version to eg c:mingw
- Unzip the 64 bit version over the top
MSYS
- Copy MSys directory from previous installation into c:mingwmsys1.0 or get an updated version from Sourceforge and unzip it.
eg: MSYS-20111123
Add c:mingwbin and c:mingwmsys1.0bin to path
add a comment |
I wrote myself a small aide-memoire the other day on how to update (or set up) my MinGW and MSYS installation for building 32 and 64 programs on Windows. I doesn't involve mingw-get so you may have to go fetch any additional stuff manually but I think it includes pretty much all you might need.
It goes like this:
MinGW Environment
- Download the latest 32 and 64 bit MinGW builds from MinGW builds on Sourceforge
eg:
http://sourceforge.net/projects/mingwbuilds/files/host-windows/releases/4.7.2/64-bit/threads-posix/sjlj/x64-4.7.2-release-posix-sjlj-rev2.7z/download
and
http://sourceforge.net/projects/mingwbuilds/files/host-windows/releases/4.7.2/32-bit/threads-posix/sjlj/x32-4.7.2-release-posix-sjlj-rev2.7z/download
Use the Posix threads sjlj version
- Unzip the 32 bit version to eg c:mingw
- Unzip the 64 bit version over the top
MSYS
- Copy MSys directory from previous installation into c:mingwmsys1.0 or get an updated version from Sourceforge and unzip it.
eg: MSYS-20111123
Add c:mingwbin and c:mingwmsys1.0bin to path
add a comment |
I wrote myself a small aide-memoire the other day on how to update (or set up) my MinGW and MSYS installation for building 32 and 64 programs on Windows. I doesn't involve mingw-get so you may have to go fetch any additional stuff manually but I think it includes pretty much all you might need.
It goes like this:
MinGW Environment
- Download the latest 32 and 64 bit MinGW builds from MinGW builds on Sourceforge
eg:
http://sourceforge.net/projects/mingwbuilds/files/host-windows/releases/4.7.2/64-bit/threads-posix/sjlj/x64-4.7.2-release-posix-sjlj-rev2.7z/download
and
http://sourceforge.net/projects/mingwbuilds/files/host-windows/releases/4.7.2/32-bit/threads-posix/sjlj/x32-4.7.2-release-posix-sjlj-rev2.7z/download
Use the Posix threads sjlj version
- Unzip the 32 bit version to eg c:mingw
- Unzip the 64 bit version over the top
MSYS
- Copy MSys directory from previous installation into c:mingwmsys1.0 or get an updated version from Sourceforge and unzip it.
eg: MSYS-20111123
Add c:mingwbin and c:mingwmsys1.0bin to path
I wrote myself a small aide-memoire the other day on how to update (or set up) my MinGW and MSYS installation for building 32 and 64 programs on Windows. I doesn't involve mingw-get so you may have to go fetch any additional stuff manually but I think it includes pretty much all you might need.
It goes like this:
MinGW Environment
- Download the latest 32 and 64 bit MinGW builds from MinGW builds on Sourceforge
eg:
http://sourceforge.net/projects/mingwbuilds/files/host-windows/releases/4.7.2/64-bit/threads-posix/sjlj/x64-4.7.2-release-posix-sjlj-rev2.7z/download
and
http://sourceforge.net/projects/mingwbuilds/files/host-windows/releases/4.7.2/32-bit/threads-posix/sjlj/x32-4.7.2-release-posix-sjlj-rev2.7z/download
Use the Posix threads sjlj version
- Unzip the 32 bit version to eg c:mingw
- Unzip the 64 bit version over the top
MSYS
- Copy MSys directory from previous installation into c:mingwmsys1.0 or get an updated version from Sourceforge and unzip it.
eg: MSYS-20111123
Add c:mingwbin and c:mingwmsys1.0bin to path
answered Dec 19 '12 at 14:39
shuntyshunty
65067
65067
add a comment |
add a comment |
What I did was get mingw-get-setup from the website and installed everything (w/ g++/g) and ran g++/g commands. Don't forget to change the PATH environment to MinGW
add a comment |
What I did was get mingw-get-setup from the website and installed everything (w/ g++/g) and ran g++/g commands. Don't forget to change the PATH environment to MinGW
add a comment |
What I did was get mingw-get-setup from the website and installed everything (w/ g++/g) and ran g++/g commands. Don't forget to change the PATH environment to MinGW
What I did was get mingw-get-setup from the website and installed everything (w/ g++/g) and ran g++/g commands. Don't forget to change the PATH environment to MinGW
answered Feb 18 at 17:19
GrizzlyGrizzly
488
488
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f520693%2finstall-mingw-and-msys-to-run-c-programs-on-windows%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown