digitalmars.D - how about dem 64bits?
- dominik (1/1) Apr 13 2008 dmd for 64bit, windows atleast, since gdc and windows is a no go - pleas...
- Lionello Lunesu (5/8) Apr 13 2008 Why is GDC a no-go on Windows? I've even compiled GDC itself on Vista
- dominik (2/5) Apr 14 2008 well, basically I haven't been able to install/compile gdc to use it on ...
- Lionello Lunesu (6/15) Apr 14 2008 I never got mingw to work, but cygwin worked fine. Just make sure you
- dominik (2/5) Apr 14 2008 So if I install cygwin and mingw I should be able to compile gcc/gdc the...
- Lionello Lunesu (5/11) Apr 14 2008 You don't need mingw if you have cygwin. At least, I just installed
- dominik (2/3) Apr 14 2008 alright, thanks I will try it. Is there a specifical GCC toolchain versi...
- Tim Burrell (15/27) Apr 14 2008 This is the wrong way to go. Cygwin compiled executables definitely
- dominik (3/5) Apr 14 2008 well the problem right now is that I don't know what I have to get and w...
- e-t172 (5/10) Apr 14 2008 Last time I checked, it was not possible to build 64-bit applications
- Sean Kelly (11/21) Apr 14 2008 have gdc (with Tango) on my windows box for both 32bit and 64bit compila...
- dominik (4/10) Apr 14 2008 oh lots of work still to do there, oh damn all of the tickets are beyond...
- dominik (3/5) Apr 14 2008 oh damn :|
- Anders Bergh (3/17) Apr 14 2008 I believe you can pass -mno-cygwin to make it use the mingw stuff instea...
- JMNorris (6/18) Apr 14 2008 And 32-bit Vista isn't??? For my 32-bit Vista, a good day (and I don't
- Lionello Lunesu (10/26) Apr 14 2008 OK, this'll probably start a flame war, but I really think Vista's
- Bill Baxter (9/33) Apr 14 2008 I think the problem with Vista is that just that Microsoft finally got
- Jarrett Billingsley (10/17) Apr 14 2008 Completely agreed.
- Robert Fraser (6/15) Apr 14 2008 No they didn't. The big thing that Vista adds that XP/Server 03 didn't
- Yigal Chripun (15/33) Apr 14 2008 you provide a counter-example for your own argument in your post.
- Bruno Medeiros (10/20) Apr 25 2008 Perhaps that "problem" is part of the point of Vista. People were eager
- Neal Becker (2/3) Apr 14 2008 How about dmd 64 bit linux? I'm still waiting for this.
dmd for 64bit, windows atleast, since gdc and windows is a no go - please!
Apr 13 2008
dominik wrote:dmd for 64bit, windows atleast, since gdc and windows is a no go - please!Why is GDC a no-go on Windows? I've even compiled GDC itself on Vista x64 a while back. (But then I went back to 32-bit Vista, because I found 64-bit Windows so freakin' schizophrenic.) L.
Apr 13 2008
Lionello Lunesu Wrote:Why is GDC a no-go on Windows? I've even compiled GDC itself on Vista x64 a while back. (But then I went back to 32-bit Vista, because I found 64-bit Windows so freakin' schizophrenic.)well, basically I haven't been able to install/compile gdc to use it on windows. I tried, mignw and all, but without success. I have no experience with gcc, so that is the problem I guess. It would be very very usefull if there were some documented steps on how to compile/install and use mingw/gdc on windows. :\
Apr 14 2008
"dominik" <dominik vga.hr> wrote in message news:ftv966$2bdt$1 digitalmars.com...Lionello Lunesu Wrote:I never got mingw to work, but cygwin worked fine. Just make sure you install all needed headers/libraries to build GCC/GDC and it'll work, I promise ;) L.Why is GDC a no-go on Windows? I've even compiled GDC itself on Vista x64 a while back. (But then I went back to 32-bit Vista, because I found 64-bit Windows so freakin' schizophrenic.)well, basically I haven't been able to install/compile gdc to use it on windows. I tried, mignw and all, but without success. I have no experience with gcc, so that is the problem I guess. It would be very very usefull if there were some documented steps on how to compile/install and use mingw/gdc on windows. :\
Apr 14 2008
Lionello Lunesu Wrote:I never got mingw to work, but cygwin worked fine. Just make sure you install all needed headers/libraries to build GCC/GDC and it'll work, I promise ;)So if I install cygwin and mingw I should be able to compile gcc/gdc then? I don't wan't to make cygwin dependable executables though :\
Apr 14 2008
dominik wrote:Lionello Lunesu Wrote:You don't need mingw if you have cygwin. At least, I just installed cygwin and that's all I needed. I don't think the executables need cygwin, just GDC and GCC need cygwin. L.I never got mingw to work, but cygwin worked fine. Just make sure you install all needed headers/libraries to build GCC/GDC and it'll work, I promise ;)So if I install cygwin and mingw I should be able to compile gcc/gdc then? I don't wan't to make cygwin dependable executables though :\
Apr 14 2008
Lionello Lunesu Wrote:I don't think the executables need cygwin, just GDC and GCC need cygwin.alright, thanks I will try it. Is there a specifical GCC toolchain version which I should use with GDC or can I use the latest (4.3.0 I think it is)?
Apr 14 2008
Lionello Lunesu wrote:dominik wrote:This is the wrong way to go. Cygwin compiled executables definitely need cygwin to run! When you're running something under cygwin you're actually running an app that is using a windows port of the linux programming APIs. If you compile an app using gcc under cygwin you're explicitly linking it to the cygwin environment. Yeah you can still redistribute it, but you'll need to distribute the appropriate cygwin dll's and so forth along with your app. mingw and gdc win (http://gdcwin.sourceforge.net/) are really what he wants. I've been using mingw and gdcwin to create binary redistributable windows apps for some time now (yes with Tango), without any issues what-so-ever. Dominik, if you have any specific problems, maybe we can help you sort them out. Tim.Lionello Lunesu Wrote:You don't need mingw if you have cygwin. At least, I just installed cygwin and that's all I needed. I don't think the executables need cygwin, just GDC and GCC need cygwin.I never got mingw to work, but cygwin worked fine. Just make sure you install all needed headers/libraries to build GCC/GDC and it'll work, I promise ;)So if I install cygwin and mingw I should be able to compile gcc/gdc then? I don't wan't to make cygwin dependable executables though :\
Apr 14 2008
Tim Burrell Wrote:Dominik, if you have any specific problems, maybe we can help you sort them out.well the problem right now is that I don't know what I have to get and what I have to do in order to have gdc (with Tango) on my windows box for both 32bit and 64bit compilation. It is not imperative that I have both 32 and 64bit on 32bit box, I can have 32bit on 32bit OS and 64bit on 64bit OS, it doesn't matter. I just can't find out what I have to download and how to install/compile GDC by myself in order to use GDC on Windows, since I have no experience with gcc. Do I download mingw, do I also download MSYS, do I download them in binary or in source, what then? What version of GCC is that then? Can I use latest gcc somehow etc.. lots of questions :)
Apr 14 2008
dominik a écrit :Tim Burrell Wrote:Last time I checked, it was not possible to build 64-bit applications using MinGW. The MinGW developers are working on it though. I don't think there is any way to output 64-bit code for Windows at the moment.Dominik, if you have any specific problems, maybe we can help you sort them out.well the problem right now is that I don't know what I have to get and what I have to do in order to have gdc (with Tango) on my windows box for both 32bit and 64bit compilation. It is not imperative that I have both 32 and 64bit on 32bit box, I can have 32bit on 32bit OS and 64bit on 64bit OS, it doesn't matter. I just can't find out what I have to download and how to install/compile GDC by myself in order to use GDC on Windows, since I have no experience with gcc.
Apr 14 2008
== Quote from e-t172 (e-t172 akegroup.org)'s articledominik a écrit :have gdc (with Tango) on my windows box for both 32bit and 64bit compilation. It is not imperative that I have both 32 and 64bit on 32bit box, I can have 32bit on 32bit OS and 64bit on 64bit OS, it doesn't matter. I just can't find out what I have to download and how to install/compile GDC by myself in order to use GDC on Windows, since I have no experience with gcc.Tim Burrell Wrote:Dominik, if you have any specific problems, maybe we can help you sort them out.well the problem right now is that I don't know what I have to get and what I have to do in order toLast time I checked, it was not possible to build 64-bit applications using MinGW. The MinGW developers are working on it though. I don't think there is any way to output 64-bit code for Windows at the moment.In theory, LLVMDC should be able to do this. Here's the link: http://www.dsource.org/projects/llvmdc And frankly, given the slow progress of GDC recently, I'm starting to think that it may be the preferred alternative D compiler anyway. I'll be very excited once it's production-quality. Sean
Apr 14 2008
"Sean Kelly" <sean invisibleduck.org> wrote in message news:fu053o$1e16$1 digitalmars.com...In theory, LLVMDC should be able to do this. Here's the link: http://www.dsource.org/projects/llvmdc And frankly, given the slow progress of GDC recently, I'm starting to think that it may be the preferred alternative D compiler anyway. I'll be very excited once it's production-quality.oh lots of work still to do there, oh damn all of the tickets are beyond my scope :|
Apr 14 2008
"e-t172" <e-t172 akegroup.org> wrote in message news:fu022q$17nh$1 digitalmars.com...I don't think there is any way to output 64-bit code for Windows at the moment.oh damn :|
Apr 14 2008
On Mon, Apr 14, 2008 at 3:56 PM, Tim Burrell <tim timburrell.net> wrote:This is the wrong way to go. Cygwin compiled executables definitely need cygwin to run! When you're running something under cygwin you're actually running an app that is using a windows port of the linux programming APIs. If you compile an app using gcc under cygwin you're explicitly linking it to the cygwin environment. Yeah you can still redistribute it, but you'll need to distribute the appropriate cygwin dll's and so forth along with your app. mingw and gdc win (http://gdcwin.sourceforge.net/) are really what he wants. I've been using mingw and gdcwin to create binary redistributable windows apps for some time now (yes with Tango), without any issues what-so-ever. Dominik, if you have any specific problems, maybe we can help you sort them out. Tim.I believe you can pass -mno-cygwin to make it use the mingw stuff instead. Anders
Apr 14 2008
Lionello Lunesu <lio lunesu.remove.com> wrote in news:ftu6ka$c98$1 digitalmars.com:dominik wrote:And 32-bit Vista isn't??? For my 32-bit Vista, a good day (and I don't have them often) is only one unplug-the-computer-and-reboot session. -- JMNorrisdmd for 64bit, windows atleast, since gdc and windows is a no go - please!Why is GDC a no-go on Windows? I've even compiled GDC itself on Vista x64 a while back. (But then I went back to 32-bit Vista, because I found 64-bit Windows so freakin' schizophrenic.) L.
Apr 14 2008
"JMNorris" <nospam nospam.com> wrote in message news:ftv9gt$2841$1 digitalmars.com...Lionello Lunesu <lio lunesu.remove.com> wrote in news:ftu6ka$c98$1 digitalmars.com:OK, this'll probably start a flame war, but I really think Vista's underrated. I like it a lot. OTOH, all x64 Windows are f**ked up: two program files, two registries, two "system32" folders (I kid you not: the x64 one is still called like that). Two different explorers, so you'll have to install explorer plugins twice, both x32 and x64.. It's really impossible to maintain. Not to mention the numerous incompatibilities. L.dominik wrote:And 32-bit Vista isn't??? For my 32-bit Vista, a good day (and I don't have them often) is only one unplug-the-computer-and-reboot session.dmd for 64bit, windows atleast, since gdc and windows is a no go - please!Why is GDC a no-go on Windows? I've even compiled GDC itself on Vista x64 a while back. (But then I went back to 32-bit Vista, because I found 64-bit Windows so freakin' schizophrenic.) L.
Apr 14 2008
Lionello Lunesu wrote:"JMNorris" <nospam nospam.com> wrote in message news:ftv9gt$2841$1 digitalmars.com...I think the problem with Vista is that just that Microsoft finally got things right pretty much right at last with XP in terms of the OS. It was the first time Win95 and WinNT really were integrated. And that was a big deal. This time all they've got to encourage people to switch is glitz and hype. That's not enough to impress the folks in corporate IT centers with the big budgets. XP works pretty darn well. That's the biggest problem with Vista. --bbLionello Lunesu <lio lunesu.remove.com> wrote in news:ftu6ka$c98$1 digitalmars.com:OK, this'll probably start a flame war, but I really think Vista's underrated. I like it a lot.dominik wrote:And 32-bit Vista isn't??? For my 32-bit Vista, a good day (and I don't have them often) is only one unplug-the-computer-and-reboot session.dmd for 64bit, windows atleast, since gdc and windows is a no go - please!Why is GDC a no-go on Windows? I've even compiled GDC itself on Vista x64 a while back. (But then I went back to 32-bit Vista, because I found 64-bit Windows so freakin' schizophrenic.) L.
Apr 14 2008
"Bill Baxter" <dnewsgroup billbaxter.com> wrote in message news:ftvis4$2v9s$1 digitalmars.com...I think the problem with Vista is that just that Microsoft finally got things right pretty much right at last with XP in terms of the OS. It was the first time Win95 and WinNT really were integrated. And that was a big deal. This time all they've got to encourage people to switch is glitz and hype. That's not enough to impress the folks in corporate IT centers with the big budgets. XP works pretty darn well. That's the biggest problem with Vista.Completely agreed. I don't know if it's telling or not, but Windows 7 is possibly slated for release sometime in the next year (http://www.news.com/8301-13860_3-9911470-56.html). Like the article says that might just be a developer release. Even if it's not, it's supposed to come out in 2010 or so. That seems terribly quick, and I'm not sure if it's just MS being MS or if they really realized what an unattractive OS Vista is for most people.
Apr 14 2008
Bill Baxter wrote:I think the problem with Vista is that just that Microsoft finally got things right pretty much right at last with XP in terms of the OS. It was the first time Win95 and WinNT really were integrated. And that was a big deal. This time all they've got to encourage people to switch is glitz and hype. That's not enough to impress the folks in corporate IT centers with the big budgets. XP works pretty darn well. That's the biggest problem with Vista. --bbNo they didn't. The big thing that Vista adds that XP/Server 03 didn't have is kernel security (and integrated OneCare, and that funny desktop search thing, and...). For people who know how to use it right (for example my dad just clicks accept on anything), it's a far more secure solution than anything any other OS has.
Apr 14 2008
Robert Fraser wrote:Bill Baxter wrote:you provide a counter-example for your own argument in your post. Vista is _not_ a secure OS. on the contrary, most other OSes, including ones who got extinct a decade ago provide more security than windows. Would you consider your house secured if it had a door with a large lock and a built-in key and a sign on it that said "Please do not enter if you do not have permission to"?? What would stop a thief to just ignore the sign and use the built-in key to steal your stuff? how is that secure in your eyes? *nix Oses and even OSes that were running on Mainframes in the 60's have had a much *much* better security than the latest and best MS has to offer. --Yigal PS if you want real security at the kernel level than check out SElinux for linux or even more advanced capability based micro-kernel approaches such as coyotos or L4sec based on L4.I think the problem with Vista is that just that Microsoft finally got things right pretty much right at last with XP in terms of the OS. It was the first time Win95 and WinNT really were integrated. And that was a big deal. This time all they've got to encourage people to switch is glitz and hype. That's not enough to impress the folks in corporate IT centers with the big budgets. XP works pretty darn well. That's the biggest problem with Vista. --bbNo they didn't. The big thing that Vista adds that XP/Server 03 didn't have is kernel security (and integrated OneCare, and that funny desktop search thing, and...). For people who know how to use it right (for example my dad just clicks accept on anything), it's a far more secure solution than anything any other OS has.
Apr 14 2008
Bill Baxter wrote:I think the problem with Vista is that just that Microsoft finally got things right pretty much right at last with XP in terms of the OS. It was the first time Win95 and WinNT really were integrated. And that was a big deal. This time all they've got to encourage people to switch is glitz and hype. That's not enough to impress the folks in corporate IT centers with the big budgets. XP works pretty darn well. That's the biggest problem with Vista. --bbPerhaps that "problem" is part of the point of Vista. People were eager to upgrade to XP because the previous OSes sucked. So MS makes an OS with lots more features and candy, but all in a way that sucks, so that people become eager to upgrade to Windows 7, hehe. :P (nonetheless after spending money on Vista). So maybe it's all a clever marketing ploy. xD -- Bruno Medeiros - MSc in CS/E student http://www.prowiki.org/wiki4d/wiki.cgi?BrunoMedeiros#D
Apr 25 2008
dominik wrote:dmd for 64bit, windows atleast, since gdc and windows is a no go - please!How about dmd 64 bit linux? I'm still waiting for this.
Apr 14 2008