<div dir="ltr">raco make x.rkt && racket x.rkt<div><br></div><div>Robby</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Fri, Apr 4, 2014 at 11:16 PM, Eric Dobson <span dir="ltr"><<a href="mailto:eric.n.dobson@gmail.com" target="_blank">eric.n.dobson@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Great that explains it and with that information I was able to<br>
simplify my test case to<br>
<br>
tmp.rkt<br>
#lang racket<br>
<br>
(require "tmp2.rkt")<br>
<br>
(define-syntax (go stx)<br>
  (foo))<br>
<br>
(go)<br>
<br>
tmp2.rkt<br>
#lang racket<br>
<br>
(provide (for-syntax foo))<br>
<br>
(begin-for-syntax<br>
  (define (foo) #'3))<br>
<br>
So now the question is how do I run my code so as to not be bit by<br>
this? I want a command to run my program that is both fast to run and<br>
correct with regards to my source. My previous assumption was that the<br>
zo file's logic was safe if I wasn't trying to break it but I now know<br>
better. Is my only option to either always compile or never compile?<br>
<div class="HOEnZb"><div class="h5"><br>
<br>
On Fri, Apr 4, 2014 at 7:15 AM, Matthew Flatt <<a href="mailto:mflatt@cs.utah.edu">mflatt@cs.utah.edu</a>> wrote:<br>
> If I understand the question:<br>
><br>
>  * With 34c3eed615, "pr12644.rkt" can compile and run.<br>
><br>
>  * With d29df205f7, "pr12644.rkt" fails to compile.<br>
><br>
>  * A bytecode form of "pr12644.rkt" compiled with 34c3eed615 can still<br>
>    run in d29df205f7, because run-time support for "pr12644.rkt" didn't<br>
>    change.<br>
><br>
>  * When you tell `racket` to run "pr12644.rkt", it will use a ".zo" for<br>
>    each of "pr12644.rkt" and its dependencies as long each individual<br>
>    ".zo" file has a newer timestamp than its ".rkt" file. That is, the<br>
>    only timestamp comparisons are on individual ".rkt" and ".zo" pairs.<br>
><br>
>  * When you tell `raco make` to build "pr12644.rkt", it checks<br>
>    dependencies (via ".dep" file) and compares a ".rkt" file's<br>
>    timestamp against the times of all of its dependencies, instead of<br>
>    just checking individual ".rkt" and ".zo" pairs. That's why a `raco<br>
>    make` in d29df205f7 tries to recompile "pr12644.rkt".<br>
><br>
> At Thu, 3 Apr 2014 09:41:19 -0700, Eric Dobson wrote:<br>
>> I have seen multiple times changes in TR not getting properly<br>
>> propogated to TR programs in my debugging, and I finally have found a<br>
>> repeatable example.<br>
>><br>
>> I am under the impression that if I compile a file and then change a<br>
>> (transitive) dependency of it, then it should have to be recompiled,<br>
>> but I am not seeing that.<br>
>><br>
>> Steps to reproduce:<br>
>> git checkout 34c3eed6155765a1e457f69194786575128a13a5<br>
>> raco setup -D typed-racket typed<br>
>> raco make<br>
>> pkgs/typed-racket-pkgs/typed-racket-test/tests/typed-racket/succeed/pr12644.rkt<br>
>> racket -l tests/typed-racket/succeed/pr12644<br>
>><br>
>> The test should run successfully and output '(6 7 8 9)<br>
>><br>
>> Now make the change (rolling forward one commit):<br>
>> git checkout d29df205f7bb8347f60c82206b74e3e167e2de24<br>
>> racket -l tests/typed-racket/succeed/pr12644<br>
>> raco make<br>
>> pkgs/typed-racket-pkgs/typed-racket-test/tests/typed-racket/succeed/pr12644.rkt<br>
>><br>
>> The test runs the first time successfully but fails if you try to<br>
>> compile it again. Can someone explain why this is not working like I<br>
>> expect?<br>
>> _________________________<br>
>>   Racket Developers list:<br>
>>   <a href="http://lists.racket-lang.org/dev" target="_blank">http://lists.racket-lang.org/dev</a><br>
_________________________<br>
  Racket Developers list:<br>
  <a href="http://lists.racket-lang.org/dev" target="_blank">http://lists.racket-lang.org/dev</a><br>
</div></div></blockquote></div><br></div>