Re: optimizer?

2024-01-07 Thread ToddAndMargo via perl6-users
On 1/7/24 15:18, ToddAndMargo via perl6-users wrote: sub DirectoryExists( Str $DirPath --> Bool ) { return "$DirPath".IO.d.Bool; }  # $Full DirPath format is `H:\MyDocsBackup` Problem:  sometimes DirectoryExists lies about backup1 existing. Here is what I am up against. You will

Re: optimizer?

2024-01-07 Thread ToddAndMargo via perl6-users
On 1/7/24 06:16, Parrot Raiser wrote: What's the reason behind the request? Hi Parrot, The reason is to eliminate the Optimizer as a source of weird problems. I have written a wrapper for Cobian Backup/Reflector that rotates backup sets. Cobain has is own database to keep track of backup

Re: optimizer?

2024-01-07 Thread ToddAndMargo via perl6-users
On 7 Jan 2024, at 07:09, ToddAndMargo via perl6-users wrote: Hi All, Is there a switch on the command line to disable the code optimizer? Many thanks, -T On 1/7/24 04:24, Elizabeth Mattijsen wrote: > $ raku --help > > ... > --optimize=level use the given level of optimi

Re: optimizer?

2024-01-07 Thread Parrot Raiser
rs@perl.org> wrote: > > > > Hi All, > > > > Is there a switch on the command line to disable the code optimizer? > > > > Many thanks, > > -T > >

Re: optimizer?

2024-01-07 Thread Elizabeth Mattijsen
$ raku --help ... --optimize=level use the given level of optimization (0..3) ... > On 7 Jan 2024, at 07:09, ToddAndMargo via perl6-users > wrote: > > Hi All, > > Is there a switch on the command line to disable the code optimizer? > > Many thanks, > -T

optimizer?

2024-01-06 Thread ToddAndMargo via perl6-users
Hi All, Is there a switch on the command line to disable the code optimizer? Many thanks, -T