Jump to page: 1 2
Thread overview
[Issue 14959] Regression in HEAD: linker error on printing SysTime with writeln
Aug 24, 2015
Jack Stouffer
Sep 01, 2015
Vladimir Panteleev
Sep 01, 2015
Vladimir Panteleev
Sep 01, 2015
Jack Stouffer
Sep 01, 2015
Vladimir Panteleev
Sep 01, 2015
Jack Stouffer
Sep 02, 2015
Jack Stouffer
Sep 03, 2015
Vladimir Panteleev
Sep 04, 2015
Jack Stouffer
Sep 04, 2015
Vladimir Panteleev
Sep 04, 2015
Jack Stouffer
Sep 04, 2015
Vladimir Panteleev
Sep 04, 2015
Jack Stouffer
Sep 04, 2015
Vladimir Panteleev
August 24, 2015
https://issues.dlang.org/show_bug.cgi?id=14959

--- Comment #1 from Jack Stouffer <jack@jackstouffer.com> ---
Oops, should have been writeln(d1);

--
September 01, 2015
https://issues.dlang.org/show_bug.cgi?id=14959

Vladimir Panteleev <thecybershadow@gmail.com> changed:

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

--- Comment #2 from Vladimir Panteleev <thecybershadow@gmail.com> ---
Can't reproduce on Linux or Windows

--
September 01, 2015
https://issues.dlang.org/show_bug.cgi?id=14959

--- Comment #3 from Vladimir Panteleev <thecybershadow@gmail.com> ---
Can't reproduce on OS X either, either with current master or with master @ 2015-08-24 17:07:19 UTC (time of your bug report).

How do you build D? Try using Digger.

--
September 01, 2015
https://issues.dlang.org/show_bug.cgi?id=14959

--- Comment #4 from Jack Stouffer <jack@jackstouffer.com> ---
(In reply to Vladimir Panteleev from comment #3)
> Can't reproduce on OS X either, either with current master or with master @ 2015-08-24 17:07:19 UTC (time of your bug report).
> 
> How do you build D? Try using Digger.

Hmm, I tried to re-download and rebuild dmd to see if that would help, but now I am getting this error:

$ make -j8 -f posix.mak AUTO_BOOTSTRAP=1

[9:36:54]
/Library/Developer/CommandLineTools/usr/bin/make -C src -f posix.mak
no cpu specified, assuming X86
CC=g++ /tmp/.host_dmd-2.067.1/dmd2/osx/bin/dmd
-conf=/tmp/.host_dmd-2.067.1/dmd2/osx/bin/dmd.conf idgen.d
/bin/sh: /tmp/.host_dmd-2.067.1/dmd2/osx/bin/dmd: No such file or directory
make[1]: *** [idgen] Error 127
make: *** [all] Error 2

--
September 01, 2015
https://issues.dlang.org/show_bug.cgi?id=14959

--- Comment #5 from Vladimir Panteleev <thecybershadow@gmail.com> ---
https://issues.dlang.org/show_bug.cgi?id=14983

Try running:

make -f posix.mak AUTO_BOOTSTRAP=1 host-dmd

--
September 01, 2015
https://issues.dlang.org/show_bug.cgi?id=14959

--- Comment #6 from Jack Stouffer <jack@jackstouffer.com> ---
(In reply to Vladimir Panteleev from comment #5)
> https://issues.dlang.org/show_bug.cgi?id=14983
> 
> Try running:
> 
> make -f posix.mak AUTO_BOOTSTRAP=1 host-dmd

$ make -f posix.mak AUTO_BOOTSTRAP=1 host-dmd
make: *** No rule to make target `host-dmd'.  Stop.

--
September 02, 2015
https://issues.dlang.org/show_bug.cgi?id=14959

--- Comment #7 from Jack Stouffer <jack@jackstouffer.com> ---
(In reply to Vladimir Panteleev from comment #5)
> https://issues.dlang.org/show_bug.cgi?id=14983
> 
> Try running:
> 
> make -f posix.mak AUTO_BOOTSTRAP=1 host-dmd

After redownloading dmd and druntime and finally being able to build them, this bug still seems to be present.

$ dmd/src/dmd test.d
Undefined symbols for architecture x86_64:

"_D3std6format64__T14formatIntegralTS3std5array17__T8AppenderTAyaZ8AppenderTmTaZ14formatIntegralFNaNbNfS3std5array17__T8AppenderTAyaZ8AppenderxmKxS3std6format18__T10FormatSpecTaZ10FormatSpeckmZv",
referenced from:

_D3std6format61__T11formatValueTS3std5array17__T8AppenderTAyaZ8AppenderThTaZ11formatValueFNaNfS3std5array17__T8AppenderTAyaZ8AppenderhKS3std6format18__T10FormatSpecTaZ10FormatSpecZv
in test.o

_D3std6format62__T11formatValueTS3std5array17__T8AppenderTAyaZ8AppenderTxhTaZ11formatValueFNaNfS3std5array17__T8AppenderTAyaZ8AppenderxhKS3std6format18__T10FormatSpecTaZ10FormatSpecZv
in test.o

_D3std6format62__T11formatValueTS3std5array17__T8AppenderTAyaZ8AppenderTxmTaZ11formatValueFNaNfS3std5array17__T8AppenderTAyaZ8AppenderxmKS3std6format18__T10FormatSpecTaZ10FormatSpecZv
in test.o

"_D3std6format64__T14formatUnsignedTS3std5array17__T8AppenderTAyaZ8AppenderTmTaZ14formatUnsignedFNaNbNfS3std5array17__T8AppenderTAyaZ8AppendermKxS3std6format18__T10FormatSpecTaZ10FormatSpeckbZv",
referenced from:

_D3std6format64__T14formatIntegralTS3std5array17__T8AppenderTAyaZ8AppenderTlTaZ14formatIntegralFNaNbNfS3std5array17__T8AppenderTAyaZ8AppenderxlKxS3std6format18__T10FormatSpecTaZ10FormatSpeckmZv
in test.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
--- errorlevel 1

--
September 03, 2015
https://issues.dlang.org/show_bug.cgi?id=14959

--- Comment #8 from Vladimir Panteleev <thecybershadow@gmail.com> ---
Can you try building D with Digger?

https://github.com/CyberShadow/Digger

--
September 04, 2015
https://issues.dlang.org/show_bug.cgi?id=14959

--- Comment #9 from Jack Stouffer <jack@jackstouffer.com> ---
(In reply to Vladimir Panteleev from comment #8)
> Can you try building D with Digger?
> 
> https://github.com/CyberShadow/Digger

Unfortunately, every time I try to use digger, the build fails even though github loads just fine in my browser:

Cloning into 'dmd'...
fatal: unable to connect to github.com:
github.com[0: 192.30.252.130]: errno=Operation timed out

Clone of 'git://github.com/D-Programming-Language/dmd' into submodule path
'dmd' failed
digger: Not caching build failure due to temporary/environment error.
Fatal error: Command ["git",
"--work-tree=/Users/Jack/dlang_contrib/test_dir/repo",
"--git-dir=/Users/Jack/dlang_contrib/test_dir/repo/.git", "submodule",
"update", "--init", "dmd"] failed with status 1

--
September 04, 2015
https://issues.dlang.org/show_bug.cgi?id=14959

--- Comment #10 from Vladimir Panteleev <thecybershadow@gmail.com> ---
(In reply to Jack Stouffer from comment #9)
> Unfortunately, every time I try to use digger, the build fails even though github loads just fine in my browser:
> 
> Cloning into 'dmd'...
> fatal: unable to connect to github.com:
> github.com[0: 192.30.252.130]: errno=Operation timed out

Unblock TCP port 9418 or run:

git config --global url.https://github.com/.insteadOf git://github.com/

--
« First   ‹ Prev
1 2