digitalmars.D.announce - RegExp badly broken in release 1.120x
- "Kris" <fu bar.com> Apr 08 2005
- "Walter" <newshound digitalmars.com> Apr 09 2005
- jicman <jicman_member pathlink.com> Apr 09 2005
- "Kris" <fu bar.com> Apr 09 2005
- "Walter" <newshound digitalmars.com> Apr 09 2005
- "Kris" <fu bar.com> Apr 11 2005
- Dave <Dave_member pathlink.com> Apr 12 2005
- "Kris" <fu bar.com> Apr 12 2005
- Sean Kelly <sean f4.ca> Apr 13 2005
- "Kris" <fu bar.com> Apr 13 2005
- "Walter" <newshound digitalmars.com> Apr 14 2005
import std.regexp;
void main()
{
new RegExp (r"[\w]", null);
}
result:
"Error: Win32 Exception"
Apr 08 2005
So, is there a new download? Walter says...I have it fixed now. Thanks.
Apr 09 2005
Great. Is there some way I can get the update, please? I need some of the other fixes in v120 to move forward (the base-class forward ref, and the static/non-static methods of same name), but am currently blocked via the RegExp thing. "Walter" <newshound digitalmars.com> wrote in message news:d384g3$1kl1$1 digitaldaemon.com...I have it fixed now. Thanks.
Apr 09 2005
"Kris" <fu bar.com> wrote in message news:d398hg$1hqj$1 digitaldaemon.com...Great. Is there some way I can get the update, please?
diff regexp.bak regexp.d 1879a1880,1881default: break;
Apr 09 2005
Thanks, but any chance of a phobos.lib? I don't have tools such as masm.exe on my workstation :-( "Walter" <newshound digitalmars.com> wrote in message news:d398r2$1ilh$1 digitaldaemon.com..."Kris" <fu bar.com> wrote in message
Great. Is there some way I can get the update, please?
diff regexp.bak regexp.d 1879a1880,1881default: break;
Apr 11 2005
In article <d3ev88$o94$1 digitaldaemon.com>, Kris says...Thanks, but any chance of a phobos.lib? I don't have tools such as masm.exe on my workstation :-(
If you change the build tool paths in the win32.mak's to match your system, then you should be able to rebuild w/ just the DMD and DMC downloads. MASM is not needed because the "minit.obj" file is included w/ the DMD zip, so the assembler is not executed by make (if you "cleaned" minit.obj you can recover it from the DMD zip). HTH, - Dave"Walter" <newshound digitalmars.com> wrote in message news:d398r2$1ilh$1 digitaldaemon.com..."Kris" <fu bar.com> wrote in message
Great. Is there some way I can get the update, please?
diff regexp.bak regexp.d 1879a1880,1881default: break;
Apr 12 2005
Thanks Dave. "Dave" <Dave_member pathlink.com> wrote in message news:d3gpfs$2rf4$1 digitaldaemon.com...In article <d3ev88$o94$1 digitaldaemon.com>, Kris says...Thanks, but any chance of a phobos.lib? I don't have tools such as masm.exe on my workstation :-(
If you change the build tool paths in the win32.mak's to match your
you should be able to rebuild w/ just the DMD and DMC downloads. MASM is
needed because the "minit.obj" file is included w/ the DMD zip, so the
is not executed by make (if you "cleaned" minit.obj you can recover it
DMD zip). HTH, - Dave"Walter" <newshound digitalmars.com> wrote in message news:d398r2$1ilh$1 digitaldaemon.com..."Kris" <fu bar.com> wrote in message
Great. Is there some way I can get the update, please?
diff regexp.bak regexp.d 1879a1880,1881default: break;
Apr 12 2005
In article <d3gpfs$2rf4$1 digitaldaemon.com>, Dave says...In article <d3ev88$o94$1 digitaldaemon.com>, Kris says...Thanks, but any chance of a phobos.lib? I don't have tools such as masm.exe on my workstation :-(
If you change the build tool paths in the win32.mak's to match your system, then you should be able to rebuild w/ just the DMD and DMC downloads. MASM is not needed because the "minit.obj" file is included w/ the DMD zip, so the assembler is not executed by make (if you "cleaned" minit.obj you can recover it from the DMD zip).
I've had problems with the masm.obj bit. I've long since commented out the line that causes .asm files to be compiled: #.asm.obj: # $(CC) -c $* as make seemed to want to build masm.asm whether masm.obj existed or not. Sean
Apr 13 2005
Thanks, Sean. "Sean Kelly" <sean f4.ca> wrote in message news:d3jnhi$26af$1 digitaldaemon.com...In article <d3gpfs$2rf4$1 digitaldaemon.com>, Dave says...In article <d3ev88$o94$1 digitaldaemon.com>, Kris says...Thanks, but any chance of a phobos.lib? I don't have tools such as masm.exe on my workstation :-(
If you change the build tool paths in the win32.mak's to match your
you should be able to rebuild w/ just the DMD and DMC downloads. MASM is
needed because the "minit.obj" file is included w/ the DMD zip, so the
is not executed by make (if you "cleaned" minit.obj you can recover it
DMD zip).
I've had problems with the masm.obj bit. I've long since commented out
that causes .asm files to be compiled: #.asm.obj: # $(CC) -c $* as make seemed to want to build masm.asm whether masm.obj existed or not. Sean
Apr 13 2005
"Kris" <fu bar.com> wrote in message news:d3ev88$o94$1 digitaldaemon.com...Thanks, but any chance of a phobos.lib?
I'm working on a new build based on another pass through dstress. Should be soon.
Apr 14 2005









jicman <jicman_member pathlink.com> 