Thread overview | |||||
---|---|---|---|---|---|
|
August 19, 2013 [Issue 10856] New: [2.064 git-head] Errors building phobos docs | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=10856 Summary: [2.064 git-head] Errors building phobos docs Product: D Version: unspecified Platform: All OS/Version: All Status: NEW Severity: regression Priority: P2 Component: DMD AssignedTo: nobody@puremagic.com ReportedBy: cbkbbejeap@mailinator.com --- Comment #0 from Nick Sabalausky <cbkbbejeap@mailinator.com> 2013-08-19 15:05:24 PDT --- Not sure if this is a DMD or phobos problem, but in the post-2.062.2 github master (using linux, haven't tried on windows), building the phobos docs results in these compiler errors: ----------------------------------------- std/utf.d(1113): Error: found '.' when expecting ';' following return statement std/utf.d(1225): Error: found '.' when expecting ';' following return statement std/utf.d(1226): Error: found 'else' instead of statement std/utf.d(1279): Error: found '.' when expecting ';' following throw statement std/utf.d(1285): Error: found '.' when expecting ';' following throw statement std/utf.d(1562): Error: found '.' when expecting ';' following throw statement std/utf.d(1581): Error: found '.' when expecting ';' following throw statement std/utf.d(1617): Error: found '.' when expecting ';' following throw statement std/utf.d(1632): Error: found '.' when expecting ';' following throw statement std/utf.d(1688): Error: found '.' when expecting ';' following throw statement std/utf.d(1708): Error: found '.' when expecting ';' following throw statement std/utf.d(1771): Error: found '.' when expecting ';' following throw statement std/utf.d(1788): Error: found '.' when expecting ';' following throw statement std/utf.d(1820): Error: found '.' when expecting ';' following throw statement std/regex.d(6675): Error: unexpected ( in declarator std/regex.d(6675): Error: basic type expected, not alias std/regex.d(6675): Error: found 'alias' when expecting ')' std/regex.d(6675): Error: no identifier for declarator isReplaceFunctor(int) std/regex.d(6675): Error: semicolon expected following function declaration std/regex.d(6675): Error: no identifier for declarator fun std/regex.d(6675): Error: semicolon expected, not ')' ----------------------------------------- -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
August 25, 2013 [Issue 10856] [2.064 git-head] Errors building phobos docs | ||||
---|---|---|---|---|
| ||||
Posted in reply to Nick Sabalausky | http://d.puremagic.com/issues/show_bug.cgi?id=10856 Andrej Mitrovic <andrej.mitrovich@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |andrej.mitrovich@gmail.com --- Comment #1 from Andrej Mitrovic <andrej.mitrovich@gmail.com> 2013-08-25 05:58:15 PDT --- (In reply to comment #0) > Not sure if this is a DMD or phobos problem, but in the post-2.062.2 github master (using linux, haven't tried on windows), building the phobos docs results in these compiler errors: Are you sure you're using git-head DMD when building the docs? The faulting line is: return new UTFException(msg, i).setSequence(sequence[0 .. i]); This syntax (using new Type.method) was introduced in git-head. Try this out: ----- class C { int foo() { return 0; } } void main() { auto x = new C().foo(); } ----- This will fail with a 2.063.2 compiler, but it works in git-head. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
August 26, 2013 [Issue 10856] [2.064 git-head] Errors building phobos docs | ||||
---|---|---|---|---|
| ||||
Posted in reply to Nick Sabalausky | http://d.puremagic.com/issues/show_bug.cgi?id=10856 Nick Sabalausky <cbkbbejeap@mailinator.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #2 from Nick Sabalausky <cbkbbejeap@mailinator.com> 2013-08-25 22:09:17 PDT --- I had doubled-checked that, but now that I look again the wrong DMD was indeed being picked up. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
Copyright © 1999-2021 by the D Language Foundation