digitalmars.D.announce - RegExp badly broken in release 1.120x
- Kris (7/7) Apr 08 2005 import std.regexp;
- Walter (1/1) Apr 09 2005 I have it fixed now. Thanks.
- jicman (2/3) Apr 09 2005
- Kris (6/7) Apr 09 2005 Great. Is there some way I can get the update, please?
- Walter (3/6) Apr 09 2005 diff regexp.bak regexp.d
- Kris (5/11) Apr 11 2005 Thanks, but any chance of a phobos.lib?
- Dave (8/23) Apr 12 2005 If you change the build tool paths in the win32.mak's to match your syst...
- Kris (7/36) Apr 12 2005 Thanks Dave.
- Sean Kelly (7/18) Apr 13 2005 I've had problems with the masm.obj bit. I've long since commented out ...
- Kris (8/28) Apr 13 2005 Thanks, Sean.
- Walter (3/4) Apr 14 2005 I'm working on a new build based on another pass through dstress. Should...
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 messagenews: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 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 messagenews: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 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...system, thenThanks, 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 youryou should be able to rebuild w/ just the DMD and DMC downloads. MASM isnotneeded because the "minit.obj" file is included w/ the DMD zip, so theassembleris not executed by make (if you "cleaned" minit.obj you can recover itfrom theDMD zip). HTH, - Dave"Walter" <newshound digitalmars.com> wrote in message news:d398r2$1ilh$1 digitaldaemon.com..."Kris" <fu bar.com> wrote in messagenews: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 12 2005
In article <d3gpfs$2rf4$1 digitaldaemon.com>, Dave says...In article <d3ev88$o94$1 digitaldaemon.com>, Kris says...I've had problems with the masm.obj bit. I've long since commented out the line that causes .asm files to be compiled: as make seemed to want to build masm.asm whether masm.obj existed or not. SeanThanks, 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).
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...system, thenIn 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 yournotyou should be able to rebuild w/ just the DMD and DMC downloads. MASM isassemblerneeded because the "minit.obj" file is included w/ the DMD zip, so thefrom theis not executed by make (if you "cleaned" minit.obj you can recover itthe lineDMD zip).I've had problems with the masm.obj bit. I've long since commented outthat causes .asm files to be compiled: 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