D.gnu - How do I start ? Total Newbee
- zvi jmail.com (12/12) Jul 18 2006 Hi all, I do have experiance with FileMaker, and some RAD tools. recentl...
- =?ISO-8859-1?Q?Anders_F_Bj=F6rklund?= (6/15) Jul 19 2006 1) Install the Xcode Tools 1.5, available from Apple
- zvi jmail.com (4/9) Jul 19 2006 I followed instructions, downloded, did a general (not custom) install, ...
- =?ISO-8859-1?Q?Anders_F_Bj=F6rklund?= (17/20) Jul 20 2006 If you use a Terminal window, it should reply something like this:
- %u (17/17) Oct 29 2006 Hi and thanks, I finaly got it to work and this what I got
- =?ISO-8859-1?Q?Anders_F_Bj=F6rklund?= (6/12) Oct 29 2006 Those two are as close as it gets for Mac OS X 10.3, since the
- ZVI (2/8) Oct 29 2006
- =?ISO-8859-1?Q?Anders_F_Bj=F6rklund?= (12/16) Oct 29 2006 No, I am saying that it Looks Good and that it should work OK... :-)
- ZVI (9/13) Oct 30 2006 Thanks, but back to the previous problem, it doesn't work.
- =?ISO-8859-1?Q?Anders_F_Bj=F6rklund?= (6/12) Oct 30 2006 What are you trying to accomplish ? Are you following the little
- ZVI (5/9) Oct 31 2006 THANKS, that was the problem, a hidden extention sneaked to the file, re...
Hi all, I do have experiance with FileMaker, and some RAD tools. recently started to learn C++ (GUI Platform) going quit well, to write my own extentions for my tools, some how I bumped into DigitalMars site, it looks very promising but for this kind of work (shell,linking and so forth) I'm a total newbee. Can somebody give me exactly what to down load, where and who to install? Computer I'm mostly using is MAC OSX 10.3.9 G5 (currently) Ps. If I'll get it doing properly I might write a text editor to get things easiar going. Thanks, a million. zvi
Jul 18 2006
zvi wrote:Hi all, I do have experiance with FileMaker, and some RAD tools. recently started to learn C++ (GUI Platform) going quit well, to write my own extentions for my tools, some how I bumped into DigitalMars site, it looks very promising but for this kind of work (shell,linking and so forth) I'm a total newbee. Can somebody give me exactly what to down load, where and who to install? Computer I'm mostly using is MAC OSX 10.3.9 G5 (currently)1) Install the Xcode Tools 1.5, available from Apple 2) http://prdownloads.sf.net/gdcmac/gdc-0.18-mac-10.3.dmg 3) http://gdcmac.sourceforge.net/GettingStarted.pdf HTH, --anders
Jul 19 2006
Thanks,1) Install the Xcode Tools 1.5, available from Apple 2) http://prdownloads.sf.net/gdcmac/gdc-0.18-mac-10.3.dmg 3) http://gdcmac.sourceforge.net/GettingStarted.pdfI followed instructions, downloded, did a general (not custom) install, and the same with the second link. And nothing happening. Looks like i'm still missing somethingHTH, --anders
Jul 19 2006
zvi wrote:I followed instructions, downloded, did a general (not custom) install, and the same with the second link. And nothing happening. Looks like i'm still missing somethingIf you use a Terminal window, it should reply something like this: gcc (GCC) 3.3 20030304 (Apple Computer, Inc. build 1666) Copyright (C) 2002 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. gdc (GCC) 3.3.6 (gdc 0.18, using dmd 0.157) Copyright (C) 2003 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. If those two programs are not present, then the installation failed. --anders when used as a command, it just represents the prompt)
Jul 20 2006
Hi and thanks, I finaly got it to work and this what I got gcc --versiongcc (GCC) 3.3 20030304 (Apple Computer, Inc. build 1666) Copyright (C) 2002 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. gdc --version gdc (GCC) 3.3.6 (gdc 0.19, using dmd 0.162) (looks like a different build) Copyright (C) 2003 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. But when I enter the command... thats what I get, gdc nothing.d gdc: nothing.d: No such file or directory gdc: no input files . Do I need to save in a certain dir? O change dir before I write this command? TIA
Oct 29 2006
%u wrote:Hi and thanks, I finaly got it to work and this what I got gcc (GCC) 3.3 20030304 (Apple Computer, Inc. build 1666) gdc (GCC) 3.3.6 (gdc 0.19, using dmd 0.162) (looks like a different build)Those two are as close as it gets for Mac OS X 10.3, since the Apple version of GCC 3.3 doesn't build with the GDC patches... Looks good.Do I need to save in a certain dir? O change dir before I write this command?Yes, you need to be in the same directory as the file. Like gcc ? --anders
Oct 29 2006
== Quote from Anders_F_Björklund (afb algonet.se)'s articlezvi wrote: Those two are as close as it gets for Mac OS X 10.3, since the Apple version of GCC 3.3 doesn't build with the GDC patches... Looks good.so are you trying to say that it wouldn't work? or I need something else, or?--andersLooks good.
Oct 29 2006
ZVI wrote:No, I am saying that it Looks Good and that it should work OK... :-) For Mac OS X 10.4, it is possible to compile the Apple/Mac GCC version with D support but on Mac OS X 10.3 we have to use the FSF GCC version. So that was why the versions of gcc and gdc didn't match on Mac OS X, but it shouldn't be of any problem - since both are based on GCC 3.3 ? As a side note I haven't packaged up the Xcode 2.4 compiler with GDC in "gdcmac", but you can download the Xcode 2.3 compiler from "dgcc". (i.e. the GDC version available for Mac OS X 10.4 on gdcmac site are currently made from the FSF GCC 4.0.1, and not from the Apple/Mac GCC) Again, it shouldn't make much of a difference which GCC variant is used. --andersThose two are as close as it gets for Mac OS X 10.3, since the Apple version of GCC 3.3 doesn't build with the GDC patches...so are you trying to say that it wouldn't work? or I need something else, or?
Oct 29 2006
== Quote from Anders_F_Björklund (afb algonet.se)'s articleThanks, but back to the previous problem, it doesn't work. this is what I get when I change dir to where the file is and put "gdmd nothing.d" gdc: nothing.d: No such file or directory gdc: no input files what might be the problem? I tryed the same thing with a "c" and "cpp" file and it works good. I just can't figure it out. TIA ( a million) ZVIso are you trying to say that it wouldn't work? or I need something else, or?No, I am saying that it Looks Good and that it should work OK... :-)--anders
Oct 30 2006
ZVI wrote:Thanks, but back to the previous problem, it doesn't work. this is what I get when I change dir to where the file is and put "gdmd nothing.d" gdc: nothing.d: No such file or directory gdc: no input files what might be the problem?What are you trying to accomplish ? Are you following the little "GettingStarted" introduction I wrote ? Does "nothing.d" exist ? Can you list it in the Terminal, and view it with: "more nothing.d" There should be no reason why it would work with .c/.cpp and not .d --anders
Oct 30 2006
== Quote from Anders_F_Björklund (afb algonet.se)'s articleZVI wrote: What are you trying to accomplish ? Are you following the little "GettingStarted" introduction I wrote ? Does "nothing.d" exist ? Can you list it in the Terminal, and view it with: "more nothing.d"THANKS, that was the problem, a hidden extention sneaked to the file, removed it and... working beautiful I very much appreciate your help. ZVI
Oct 31 2006