[Issue 14572] cannot build dmd from source anymore: 'g++ -m64: No such file or directory'

2017-07-22 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14572

--- Comment #11 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/dmd

https://github.com/dlang/dmd/commit/1cfeb7f601e4befcba00354142a2cb556cf7b1d7
fix Issue 14572 (Take 2) - Cannot build from source: 'g++ -m64: No such file or
directory'

https://github.com/dlang/dmd/commit/963f4c09243395d760a63d2f8001b8de53a132b7
Merge pull request #4772 from JinShil/fix14572

--


[Issue 14572] cannot build dmd from source anymore: 'g++ -m64: No such file or directory'

2015-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14572

--- Comment #10 from github-bugzi...@puremagic.com ---
Commits pushed to stable at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/1cfeb7f601e4befcba00354142a2cb556cf7b1d7
fix Issue 14572 (Take 2) - Cannot build from source: 'g++ -m64: No such file or
directory'

https://github.com/D-Programming-Language/dmd/commit/963f4c09243395d760a63d2f8001b8de53a132b7
Merge pull request #4772 from JinShil/fix14572

--


[Issue 14572] cannot build dmd from source anymore: 'g++ -m64: No such file or directory'

2015-07-23 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14572

--- Comment #9 from github-bugzi...@puremagic.com ---
Commit pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/65ce308abc30e0f31fa118326840da14043adf5f
Merge pull request #4772 from JinShil/fix14572

--


[Issue 14572] cannot build dmd from source anymore: 'g++ -m64: No such file or directory'

2015-06-26 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14572

--- Comment #8 from github-bugzi...@puremagic.com ---
Commit pushed to stable at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/65ce308abc30e0f31fa118326840da14043adf5f
Merge pull request #4772 from JinShil/fix14572

fix Issue 14572 (Take 2) - Cannot build from source: 'g++ -m64: No such file or
directory'

--


[Issue 14572] cannot build dmd from source anymore: 'g++ -m64: No such file or directory'

2015-06-25 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14572

github-bugzi...@puremagic.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--


[Issue 14572] cannot build dmd from source anymore: 'g++ -m64: No such file or directory'

2015-06-25 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14572

--- Comment #7 from github-bugzi...@puremagic.com ---
Commits pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/1cfeb7f601e4befcba00354142a2cb556cf7b1d7
fix Issue 14572 (Take 2) - Cannot build from source: 'g++ -m64: No such file or
directory'

https://github.com/D-Programming-Language/dmd/commit/963f4c09243395d760a63d2f8001b8de53a132b7
Merge pull request #4772 from JinShil/fix14572

fix Issue 14572 (Take 2) - Cannot build from source: 'g++ -m64: No such file or
directory'

--


[Issue 14572] cannot build dmd from source anymore: 'g++ -m64: No such file or directory'

2015-06-25 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14572

Mike  changed:

   What|Removed |Added

 CC||slavo5...@yahoo.com

--- Comment #6 from Mike  ---
Take 2: https://github.com/D-Programming-Language/dmd/pull/4772

--


[Issue 14572] cannot build dmd from source anymore: 'g++ -m64: No such file or directory'

2015-05-22 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14572

--- Comment #5 from Walter Bright  ---
https://github.com/D-Programming-Language/dmd/pull/4675

--


[Issue 14572] cannot build dmd from source anymore: 'g++ -m64: No such file or directory'

2015-05-21 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14572

Walter Bright  changed:

   What|Removed |Added

 CC||bugzi...@digitalmars.com

--- Comment #4 from Walter Bright  ---
(In reply to Timothee Cour from comment #3)
> $(CXX) -x c++ some_badly_named_cpp_file.c

Is "-x c++" supported on both clang and gcc?

--


[Issue 14572] cannot build dmd from source anymore: 'g++ -m64: No such file or directory'

2015-05-15 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14572

Timothee Cour  changed:

   What|Removed |Added

 CC||timothee.co...@gmail.com

--- Comment #3 from Timothee Cour  ---
it happens when user has 
export CC=clang
in his ~/.zshrc / ~/.bashrc for example, and then calls the makefile.
Note that the makefile sets CC to g++ (a hack to allow the .c files to be
treated as .cpp files); which I think is problematic. a better way would be to
call 

$(CXX) -x c++ some_badly_named_cpp_file.c

--


[Issue 14572] cannot build dmd from source anymore: 'g++ -m64: No such file or directory'

2015-05-14 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14572

Martin Nowak  changed:

   What|Removed |Added

 CC||c...@dawg.eu

--- Comment #2 from Martin Nowak  ---
g++ -m64: No such file or directory

This error comes from the linker invocation of dmd.
Probably happens because the makefile or so exports CC.

--


[Issue 14572] cannot build dmd from source anymore: 'g++ -m64: No such file or directory'

2015-05-12 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14572

Vladimir Panteleev  changed:

   What|Removed |Added

 CC||thecybersha...@gmail.com

--- Comment #1 from Vladimir Panteleev  ---
I can't reproduce this.

Check the configuration of your host D compiler.

Try building with Digger. If it works with Digger, then the issue lies with
your host D compiler.

--