<div dir="ltr">Or use DrRacket and turn on the auto compilation feature. Or set up compiler/cm yourself to do that.<div><br></div><div>Robby</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Mar 21, 2013 at 10:16 AM, Eric Dobson <span dir="ltr">&lt;<a href="mailto:eric.n.dobson@gmail.com" target="_blank">eric.n.dobson@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">That doesn&#39;t explain why I can get the same behavior as the macro with<br>
a function call, probably inlining is responsible for that though.<br>
<br>
So the take away is that if I want my running system to represent the<br>
current state of the source files I either need to run raco make every<br>
single time, or never run raco make. That seems very counter<br>
intuitive.<br>
<div class="HOEnZb"><div class="h5"><br>
On Thu, Mar 21, 2013 at 1:51 AM, Tobias Hammer &lt;<a href="mailto:tobias.hammer@dlr.de">tobias.hammer@dlr.de</a>&gt; wrote:<br>
&gt; The difference lies in the method how racket and raco make check for<br>
&gt; changes.<br>
&gt; - racket only looks at each individual file&#39;s timestamp source and .zo<br>
&gt; timestamp and uses whichever is never.<br>
&gt; - raco make always checks if the file has changed or any of its dependencies<br>
&gt; has changed to decide if it has to recompile the file.<br>
&gt;<br>
&gt; Whats happens in version 1 is that the macro is already expanded in a.zo and<br>
&gt; a.zo is still never than a.rkt. Therefore racket loads a.zo (but b.rkt) and<br>
&gt; prints &#39;version1.<br>
&gt; In version 2 raco make (or more correctly compiler/cm) checks a.rkt, finds<br>
&gt; the dependency to b.rkt, notices the change in b.rkt (by calculating a<br>
&gt; checksum over the whole dependency tree if i remember correct) and therefore<br>
&gt; recompiles a.rkt AND b.rkt.<br>
&gt;<br>
&gt; Version 3 should as far as i understand never differ, assumed raco make<br>
&gt; works.<br>
&gt;<br>
&gt; Tobias<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Thu, 21 Mar 2013 06:23:24 +0100, Eric Dobson &lt;<a href="mailto:eric.n.dobson@gmail.com">eric.n.dobson@gmail.com</a>&gt;<br>
&gt; wrote:<br>
&gt;<br>
&gt;&gt; I&#39;m trying to understand what are the guarantees that raco make is<br>
&gt;&gt; meant to provide. I&#39;m going to limit this to simple programs, no fancy<br>
&gt;&gt; dynamic requires, or trying to trick the compiler.<br>
&gt;&gt;<br>
&gt;&gt; In the following scenario:<br>
&gt;&gt; 1. Edit files<br>
&gt;&gt; 2. run &#39;raco make &lt;files&gt;&#39;<br>
&gt;&gt; 3. Change files<br>
&gt;&gt; I expect all of these to have the same effect during the running of<br>
&gt;&gt; phase 0 when running racket.<br>
&gt;&gt; 4. racket &lt;main-file&gt;<br>
&gt;&gt; or<br>
&gt;&gt; 4. raco make &lt;files&gt;<br>
&gt;&gt; 5. racket &lt;main-file&gt;<br>
&gt;&gt; or<br>
&gt;&gt; 4. rm -rf compiled/<br>
&gt;&gt; 5. raco make &lt;files&gt;<br>
&gt;&gt; 6. racket &lt;main-file&gt;<br>
&gt;&gt;<br>
&gt;&gt; I can make version 1 and 2 differ with the following program:<br>
&gt;&gt; a.rkt<br>
&gt;&gt; #lang racket<br>
&gt;&gt; (require &quot;b.rkt&quot;)<br>
&gt;&gt; (macro)<br>
&gt;&gt;<br>
&gt;&gt; #lang racket<br>
&gt;&gt; (provide maco)<br>
&gt;&gt; (define-syntax (macro stx)<br>
&gt;&gt;   #&#39;&#39;version1)<br>
&gt;&gt;<br>
&gt;&gt; Where the edit is changing version1 to version2. I can also replicate<br>
&gt;&gt; this with a function and not a macro.<br>
&gt;&gt;<br>
&gt;&gt; I thought I could make version 2 and version 3 differ, but cannot seem<br>
&gt;&gt; to replicate it now, but it would be helpful to know if I see<br>
&gt;&gt; something that is fixed by clearing the compiled directories.<br>
&gt;&gt;<br>
&gt;&gt; My understanding was that racket used the same logic as raco make on<br>
&gt;&gt; whether or not to use the compiled versions versus recompiling, and<br>
&gt;&gt; this seems to refute that. Can someone give some insight on what I<br>
&gt;&gt; should be expecting?<br>
&gt;&gt; ____________________<br>
&gt;&gt;   Racket Users list:<br>
&gt;&gt;   <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/users</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; ---------------------------------------------------------<br>
&gt; Tobias Hammer<br>
&gt; DLR / Robotics and Mechatronics Center (RMC)<br>
&gt; Muenchner Str. 20, D-82234 Wessling<br>
&gt; Tel.: 08153/28-1487<br>
&gt; Mail: <a href="mailto:tobias.hammer@dlr.de">tobias.hammer@dlr.de</a><br>
____________________<br>
  Racket Users list:<br>
  <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/users</a><br>
</div></div></blockquote></div><br></div>