Re: Gdmd compiling error

2016-03-19 Thread Edwin van Leeuwen via Digitalmars-d-learn
On Wednesday, 16 March 2016 at 12:17:42 UTC, Orkhan wrote: On Tuesday, 15 March 2016 at 18:26:48 UTC, Ali Çehreli wrote: I don't know where from shpuld I get help. Thanks. Is the xcomm library available somewhere, maybe if we had a link to the original documentation we could help.

Re: Gdmd compiling error

2016-03-19 Thread Orkhan via Digitalmars-d-learn
On Tuesday, 15 March 2016 at 18:26:48 UTC, Ali Çehreli wrote: On 03/15/2016 02:45 AM, Orkhan wrote: > output of the gdc is : > > root@ubuntu:/home/alikoza/Downloads/i686-pc-linux-gnu# gdc > gdc: fatal error: no input files > compilation terminated. That makes sense. It should produce an

Re: Gdmd compiling error

2016-03-19 Thread Orkhan via Digitalmars-d-learn
On Wednesday, 16 March 2016 at 12:20:32 UTC, Edwin van Leeuwen wrote: On Wednesday, 16 March 2016 at 12:17:42 UTC, Orkhan wrote: On Tuesday, 15 March 2016 at 18:26:48 UTC, Ali Çehreli wrote: I don't know where from shpuld I get help. Thanks. Is the xcomm library available somewhere, maybe if

Re: Gdmd compiling error

2016-03-15 Thread Ali Çehreli via Digitalmars-d-learn
On 03/15/2016 02:45 AM, Orkhan wrote: > output of the gdc is : > > root@ubuntu:/home/alikoza/Downloads/i686-pc-linux-gnu# gdc > gdc: fatal error: no input files > compilation terminated. That makes sense. It should produce an executable if you give it a .d file: gdc foo.d Since you

Re: Gdmd compiling error

2016-03-15 Thread Orkhan via Digitalmars-d-learn
On Monday, 14 March 2016 at 17:08:24 UTC, Marc Schütz wrote: On Monday, 14 March 2016 at 14:46:06 UTC, Orkhan wrote: [...] What does `which gdc` print? If it says something like "which: no gdc in ...", there is a problem with the installation of GDC. Otherwise, you can use the following as

Re: Gdmd compiling error

2016-03-15 Thread Orkhan via Digitalmars-d-learn
On Monday, 14 March 2016 at 18:13:33 UTC, Ali Çehreli wrote: On 03/14/2016 10:08 AM, Marc Schütz wrote: > What does `which gdc` print? If it says something like "which: no gdc in > ...", there is a problem with the installation of GDC. Otherwise, you > can use the following as a quick

Re: Gdmd compiling error

2016-03-15 Thread Orkhan via Digitalmars-d-learn
On Monday, 14 March 2016 at 17:08:24 UTC, Marc Schütz wrote: On Monday, 14 March 2016 at 14:46:06 UTC, Orkhan wrote: On Monday, 14 March 2016 at 11:11:28 UTC, Ali Çehreli wrote: On 03/14/2016 02:56 AM, Orkhan wrote: > THe output like that : > root@ubuntu:/opt/xcomm# gdmd > Can't exec

Re: Gdmd compiling error

2016-03-14 Thread Ali Çehreli via Digitalmars-d-learn
On 03/14/2016 10:08 AM, Marc Schütz wrote: > What does `which gdc` print? If it says something like "which: no gdc in > ...", there is a problem with the installation of GDC. Otherwise, you > can use the following as a quick workaround: > > sudo ln -s `which gdc` /usr/local/bin/gdc > > The

Re: Gdmd compiling error

2016-03-14 Thread Marc Schütz via Digitalmars-d-learn
On Monday, 14 March 2016 at 14:46:06 UTC, Orkhan wrote: On Monday, 14 March 2016 at 11:11:28 UTC, Ali Çehreli wrote: On 03/14/2016 02:56 AM, Orkhan wrote: > THe output like that : > root@ubuntu:/opt/xcomm# gdmd > Can't exec "/usr/local/bin/gdc": No such file or directory at Ok, now you need

Re: Gdmd compiling error

2016-03-14 Thread Orkhan via Digitalmars-d-learn
On Monday, 14 March 2016 at 11:11:28 UTC, Ali Çehreli wrote: On 03/14/2016 02:56 AM, Orkhan wrote: > THe output like that : > root@ubuntu:/opt/xcomm# gdmd > Can't exec "/usr/local/bin/gdc": No such file or directory at Ok, now you need to install gdc: http://gdcproject.org/downloads In

Re: Gdmd compiling error

2016-03-14 Thread Ali Çehreli via Digitalmars-d-learn
On 03/14/2016 02:56 AM, Orkhan wrote: > THe output like that : > root@ubuntu:/opt/xcomm# gdmd > Can't exec "/usr/local/bin/gdc": No such file or directory at Ok, now you need to install gdc: http://gdcproject.org/downloads In short, the project that you are trying to build depends on gdmd,

Re: Gdmd compiling error

2016-03-14 Thread Ali Çehreli via Digitalmars-d-learn
On 03/14/2016 02:29 AM, Orkhan wrote: > root@ubuntu:/home/alikoza/Downloads/GDMD-master# sudo make install > rm -f /usr/local/bin/gdmd > install dmd-script /usr/local/bin/gdmd Good: gdmd seems to be installed. Please type 'gdmd' to confirm. Note: You may see errors like 'Can't exec

Re: Gdmd compiling error

2016-03-14 Thread Orkhan via Digitalmars-d-learn
On Monday, 14 March 2016 at 09:48:00 UTC, Ali Çehreli wrote: On 03/14/2016 02:29 AM, Orkhan wrote: > root@ubuntu:/home/alikoza/Downloads/GDMD-master# sudo make install > rm -f /usr/local/bin/gdmd > install dmd-script /usr/local/bin/gdmd Good: gdmd seems to be installed. Please type 'gdmd' to

Re: Gdmd compiling error

2016-03-14 Thread Ali Çehreli via Digitalmars-d-learn
On 03/14/2016 02:15 AM, Orkhan wrote: >> I think you need to install gdmd: >> >> https://github.com/D-Programming-GDC/GDMD Yes I have seen that page. But I don't know how to make that . I think I need to upload all files then unzip then just type make ? could you please let me know.

Re: Gdmd compiling error

2016-03-14 Thread Orkhan via Digitalmars-d-learn
On Monday, 14 March 2016 at 09:24:19 UTC, Ali Çehreli wrote: On 03/14/2016 02:15 AM, Orkhan wrote: >> I think you need to install gdmd: >> >> https://github.com/D-Programming-GDC/GDMD Yes I have seen that page. But I don't know how to make that . I think I need to upload all files then

Re: Gdmd compiling error

2016-03-14 Thread Orkhan via Digitalmars-d-learn
On Monday, 14 March 2016 at 09:06:30 UTC, Ali Çehreli wrote: On 03/14/2016 02:01 AM, Orkhan wrote: > I changed all gdmd to dmd and still not getting result . the outputs > after changing dmd is : > > Error: unrecognized switch '-q,-rdynamic' Sorry to have misled you. Apparently, those are gcc

Re: Gdmd compiling error

2016-03-14 Thread Ali Çehreli via Digitalmars-d-learn
On 03/14/2016 02:01 AM, Orkhan wrote: > I changed all gdmd to dmd and still not getting result . the outputs > after changing dmd is : > > Error: unrecognized switch '-q,-rdynamic' Sorry to have misled you. Apparently, those are gcc compiler switches that are not supported by dmd. > On

Re: Gdmd compiling error

2016-03-14 Thread Orkhan via Digitalmars-d-learn
On Monday, 14 March 2016 at 07:52:18 UTC, Ali Çehreli wrote: On 03/13/2016 06:07 AM, Orkhan wrote: > It is in linux system , and when I type make command it returns error like: > /bin/sh: 1: gdmd: not found I think you need to install gdmd: https://github.com/D-Programming-GDC/GDMD

Re: Gdmd compiling error

2016-03-14 Thread Ali Çehreli via Digitalmars-d-learn
On 03/13/2016 06:07 AM, Orkhan wrote: > It is in linux system , and when I type make command it returns error like: > /bin/sh: 1: gdmd: not found I think you need to install gdmd: https://github.com/D-Programming-GDC/GDMD Alternatively, assuming that you have dmd installed, you can try