Jump to page: 1 2
Thread overview
[Issue 14572] cannot build dmd from source anymore: 'g++ -m64: No such file or directory'
May 12, 2015
Vladimir Panteleev
May 15, 2015
Martin Nowak
May 16, 2015
Timothee Cour
May 22, 2015
Walter Bright
May 23, 2015
Walter Bright
Jun 25, 2015
Mike
May 12, 2015
https://issues.dlang.org/show_bug.cgi?id=14572

Vladimir Panteleev <thecybershadow@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |thecybershadow@gmail.com

--- Comment #1 from Vladimir Panteleev <thecybershadow@gmail.com> ---
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.

--
May 15, 2015
https://issues.dlang.org/show_bug.cgi?id=14572

Martin Nowak <code@dawg.eu> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |code@dawg.eu

--- Comment #2 from Martin Nowak <code@dawg.eu> ---
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.

--
May 16, 2015
https://issues.dlang.org/show_bug.cgi?id=14572

Timothee Cour <timothee.cour2@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |timothee.cour2@gmail.com

--- Comment #3 from Timothee Cour <timothee.cour2@gmail.com> ---
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

--
May 22, 2015
https://issues.dlang.org/show_bug.cgi?id=14572

Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bugzilla@digitalmars.com

--- Comment #4 from Walter Bright <bugzilla@digitalmars.com> ---
(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?

--
May 23, 2015
https://issues.dlang.org/show_bug.cgi?id=14572

--- Comment #5 from Walter Bright <bugzilla@digitalmars.com> ---
https://github.com/D-Programming-Language/dmd/pull/4675

--
June 25, 2015
https://issues.dlang.org/show_bug.cgi?id=14572

Mike <slavo5150@yahoo.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |slavo5150@yahoo.com

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

--
June 25, 2015
https://issues.dlang.org/show_bug.cgi?id=14572

--- Comment #7 from github-bugzilla@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'

--
June 25, 2015
https://issues.dlang.org/show_bug.cgi?id=14572

github-bugzilla@puremagic.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--
June 26, 2015
https://issues.dlang.org/show_bug.cgi?id=14572

--- Comment #8 from github-bugzilla@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'

--
July 24, 2015
https://issues.dlang.org/show_bug.cgi?id=14572

--- Comment #9 from github-bugzilla@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

--
« First   ‹ Prev
1 2