Re: [racket-users] Re: Racket v7.3.0.900 is available for testing

2019-08-01 Thread Matthew Flatt
At Thu, 1 Aug 2019 06:06:29 -0700 (PDT), Alex Harsanyi wrote:
> When I runActivityLog2 there is some code which prints out a number to the 
> console when the application starts up -- this does not happen if I build 
> the application with Racket 7.3, so it is not a spurious printf in my 
> code.  It is just a number: if I run it using racket.exe, it is always 
> 98908, if I build an executable, the value printed out is always 98914, and 
> a new console window is opened, which is very annoying for a GUI 
> application. I tried creating a simple GUI application, with just a frame, 
> but nothing was printed out when I ran that one, so I am not sure how to 
> investigate it further.

I see that calling `(collect-garbage 'major)` returns a number when it
should return `(void)`.

Repair pushed, but I don't that we'll get this repair into the release.
For v7.4, Racket CS will be advertised as "beta". It's close enough to
be worth trying (to expose bugs like this one), but there are likely to
be too many problems to switch to it for production use for most Racket
projects.

> Also, in one of the test runs, I got a warning printed out on the console:
> 
> (racket.exe:6532): Pango-WARNING **: 20:39:36.824: couldn't load font 
> "Helvetica Bold Not-Rotated 14px", falling back to "Sans Bold Not-Rotated 
> 14px", expect ugly output.
> 
> I only got this warning once and could not reproduce it anymore.  As with 
> the number, I never saw this warning (or any unexpected text) printed out 
> on the console with previous Racket versions.

The problem here is that Pango warnings (or warnings from glib-based
libraries i ngeneral) are not being redirected to logging. I forgot to
fill in that piece for Racket CS, and I'll put it back on my list.

> Should I create issues for these in the Racket, or some other repository?

Racket issues are fine, although the latter is probably more
specifically a `racket/draw` issue.

Thanks for your consistent help!
Matthew

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/5d42ea1e.1c69fb81.db42.82a6SMTPIN_ADDED_MISSING%40gmr-mx.google.com.


Re: [racket-users] Re: Racket v7.3.0.900 is available for testing

2019-08-01 Thread Alex Harsanyi
I installed the latest version, and Racket and raco run fine, but I am 
sorry to report some more problems with it: 

When I runActivityLog2 there is some code which prints out a number to the 
console when the application starts up -- this does not happen if I build 
the application with Racket 7.3, so it is not a spurious printf in my 
code.  It is just a number: if I run it using racket.exe, it is always 
98908, if I build an executable, the value printed out is always 98914, and 
a new console window is opened, which is very annoying for a GUI 
application. I tried creating a simple GUI application, with just a frame, 
but nothing was printed out when I ran that one, so I am not sure how to 
investigate it further.

Also, in one of the test runs, I got a warning printed out on the console:

(racket.exe:6532): Pango-WARNING **: 20:39:36.824: couldn't load font 
"Helvetica Bold Not-Rotated 14px", falling back to "Sans Bold Not-Rotated 
14px", expect ugly output.

I only got this warning once and could not reproduce it anymore.  As with 
the number, I never saw this warning (or any unexpected text) printed out 
on the console with previous Racket versions.

Should I create issues for these in the Racket, or some other repository?

Alex.


On Wednesday, July 31, 2019 at 10:06:40 AM UTC+8, Matthew Flatt wrote:
>
> The latest release candidate at pre-release.racket-lang.org fixes this 
> problem. 
>
> Thanks again! 
>
> At Fri, 26 Jul 2019 22:58:38 -0700 (PDT), Alex Harsanyi wrote: 
> > I can install the windows version of Racket CS and DrRacket (and my 
> > program) runs fine, however when I try to run "raco" I get a message 
> > windows with the "Can't find C:\Program FIles\Racket\.\racket > Variant:Replace This>.exe": 
> > 
> > 
> > 
> > I have no extra packages installed or migrated to this installation. 
> > 
> > Alex. 
> > 
> > On Friday, July 26, 2019 at 8:41:15 PM UTC+8, Matthew Flatt wrote: 
> > > 
> > > At Tue, 23 Jul 2019 18:50:57 -0600, Matthew Flatt wrote: 
> > > > At Tue, 23 Jul 2019 17:47:35 -0700 (PDT), Alex Harsanyi wrote: 
> > > > > I installed the windows version of the Racket CS build and, when 
> > > trying to 
> > > > > run DrRacket I get the following error in a console: 
> > > > > 
> > > > > variable force-unfasl is not bound 
> > > > 
> > > > This is a build problem that we're investigating. 
> > > 
> > > The latest pre-release build of Racket CS for Windows installs and 
> runs 
> > > (at least for me): 
> > > 
> > >  http://pre-release.racket-lang.org/ 
> > > 
> > > 
> > > Thanks again for helping us check the pre-release builds! 
> > > 
> > > 
> > 
> > -- 
> > You received this message because you are subscribed to the Google 
> Groups 
> > "Racket Users" group. 
> > To unsubscribe from this group and stop receiving emails from it, send 
> an 
> > email to racket...@googlegroups.com . 
> > To view this discussion on the web visit 
> > 
> https://groups.google.com/d/msgid/racket-users/b6d41e86-bbcd-4c8b-82de-7fa99e4f
>  
> > 7dd4%40googlegroups.com. 
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/82bf365e-92e0-4188-88c0-7dda0e833a45%40googlegroups.com.


Re: [racket-users] Re: Racket v7.3.0.900 is available for testing

2019-07-30 Thread Matthew Flatt
The latest release candidate at pre-release.racket-lang.org fixes this
problem.

Thanks again!

At Fri, 26 Jul 2019 22:58:38 -0700 (PDT), Alex Harsanyi wrote:
> I can install the windows version of Racket CS and DrRacket (and my 
> program) runs fine, however when I try to run "raco" I get a message 
> windows with the "Can't find C:\Program FIles\Racket\.\racket Variant:Replace This>.exe":
> 
> 
> 
> I have no extra packages installed or migrated to this installation.
> 
> Alex.
> 
> On Friday, July 26, 2019 at 8:41:15 PM UTC+8, Matthew Flatt wrote:
> >
> > At Tue, 23 Jul 2019 18:50:57 -0600, Matthew Flatt wrote: 
> > > At Tue, 23 Jul 2019 17:47:35 -0700 (PDT), Alex Harsanyi wrote: 
> > > > I installed the windows version of the Racket CS build and, when 
> > trying to 
> > > > run DrRacket I get the following error in a console: 
> > > > 
> > > > variable force-unfasl is not bound 
> > > 
> > > This is a build problem that we're investigating. 
> >
> > The latest pre-release build of Racket CS for Windows installs and runs 
> > (at least for me): 
> >
> >  http://pre-release.racket-lang.org/ 
> >
> >
> > Thanks again for helping us check the pre-release builds! 
> >
> >
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Racket Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to racket-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/racket-users/b6d41e86-bbcd-4c8b-82de-7fa99e4f
> 7dd4%40googlegroups.com.

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/5d40f7ae.1c69fb81.81cad.5aa6SMTPIN_ADDED_MISSING%40gmr-mx.google.com.


Re: [racket-users] Re: Racket v7.3.0.900 is available for testing

2019-07-26 Thread Alex Harsanyi
I can install the windows version of Racket CS and DrRacket (and my 
program) runs fine, however when I try to run "raco" I get a message 
windows with the "Can't find C:\Program FIles\Racket\.\racket.exe":



I have no extra packages installed or migrated to this installation.

Alex.

On Friday, July 26, 2019 at 8:41:15 PM UTC+8, Matthew Flatt wrote:
>
> At Tue, 23 Jul 2019 18:50:57 -0600, Matthew Flatt wrote: 
> > At Tue, 23 Jul 2019 17:47:35 -0700 (PDT), Alex Harsanyi wrote: 
> > > I installed the windows version of the Racket CS build and, when 
> trying to 
> > > run DrRacket I get the following error in a console: 
> > > 
> > > variable force-unfasl is not bound 
> > 
> > This is a build problem that we're investigating. 
>
> The latest pre-release build of Racket CS for Windows installs and runs 
> (at least for me): 
>
>  http://pre-release.racket-lang.org/ 
>
>
> Thanks again for helping us check the pre-release builds! 
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/b6d41e86-bbcd-4c8b-82de-7fa99e4f7dd4%40googlegroups.com.


Re: [racket-users] Re: Racket v7.3.0.900 is available for testing

2019-07-26 Thread Matthew Flatt
At Tue, 23 Jul 2019 18:50:57 -0600, Matthew Flatt wrote:
> At Tue, 23 Jul 2019 17:47:35 -0700 (PDT), Alex Harsanyi wrote:
> > I installed the windows version of the Racket CS build and, when trying to 
> > run DrRacket I get the following error in a console:
> > 
> > variable force-unfasl is not bound
> 
> This is a build problem that we're investigating.

The latest pre-release build of Racket CS for Windows installs and runs
(at least for me):

 http://pre-release.racket-lang.org/


Thanks again for helping us check the pre-release builds!

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/5d3af4e9.1c69fb81.f4b5c.b9bcSMTPIN_ADDED_MISSING%40gmr-mx.google.com.


Re: [racket-users] Re: Racket v7.3.0.900 is available for testing

2019-07-23 Thread Matthew Flatt
At Tue, 23 Jul 2019 17:47:35 -0700 (PDT), Alex Harsanyi wrote:
> I installed the windows version of the Racket CS build and, when trying to 
> run DrRacket I get the following error in a console:
> 
> variable force-unfasl is not bound

This is a build problem that we're investigating. Thanks for the
report!

> As a separate note, this pre-release build tries to install itself as 
> "Racket", which will replace the main Racket installation, I would prefer 
> if pre-release builds would install in versioned directories (i.e. 
> Racket-7.3.0.900), this was the case with past pre-releases.  I could tell 
> the installer to use a versioned directory though, so this is not a big 
> issue.

Snapshot installers suggest a version number for the installation
directory, but my memory of release candidates is that they don't
include a version in the default path for Windows, because they're
meant to act like a release. It's possible that I misremember they way
that we've configured things in the past, though.

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/5d37ab73.1c69fb81.81cad.0a8cSMTPIN_ADDED_MISSING%40gmr-mx.google.com.