Jump to page: 1 2
Thread overview
RegExp badly broken in release 1.120x
Apr 09, 2005
Kris
Apr 09, 2005
Walter
Apr 09, 2005
jicman
Apr 09, 2005
Kris
Apr 09, 2005
Walter
Apr 11, 2005
Kris
Apr 12, 2005
Dave
Apr 12, 2005
Kris
Apr 13, 2005
Sean Kelly
Apr 13, 2005
Kris
Apr 14, 2005
Walter
Apr 14, 2005
Kris
April 09, 2005
import std.regexp;

void main()
{
        new RegExp (r"[\w]", null);
}

result:

"Error: Win32 Exception"



April 09, 2005
I have it fixed now. Thanks.


April 09, 2005
So, is there a new download?

Walter says...
>
>I have it fixed now. Thanks.
>
>


April 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.
>
>


April 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,1881
>                           default:
>                               break;


April 11, 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
news:d398hg$1hqj$1@digitaldaemon.com...
> > Great. Is there some way I can get the update, please?
>
> diff regexp.bak regexp.d
> 1879a1880,1881
> >                           default:
> >                               break;
>
>


April 12, 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
>news:d398hg$1hqj$1@digitaldaemon.com...
>> > Great. Is there some way I can get the update, please?
>>
>> diff regexp.bak regexp.d
>> 1879a1880,1881
>> >                           default:
>> >                               break;
>>
>>
>
>


April 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
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
> >news:d398hg$1hqj$1@digitaldaemon.com...
> >> > Great. Is there some way I can get the update, please?
> >>
> >> diff regexp.bak regexp.d
> >> 1879a1880,1881
> >> >                           default:
> >> >                               break;
> >>
> >>
> >
> >
>
>


April 13, 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


April 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
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
>
>


« First   ‹ Prev
1 2