<div dir="ltr"><div><div><div><div><div><div><div>I&#39;ve created a mini-collection out on Github.  <a href="https://github.com/RayRacine/tlib.git">https://github.com/RayRacine/tlib.git</a><br><br></div>Consider the single collection, c1, with 4 modules.<br>
<br></div>m1.rkt -&gt; m1a.rkt -&gt; m1aa.rkt<br></div>m2.rkt <br><br></div>Where m1 depends on m1a, m1a on m1aa and m2 had no dependencies.<br><br></div>--&gt; raco link /code/tlib/c1<br>--&gt; raco link -l<br>User links:<br>
 collection: &quot;c1&quot;  path: &quot;/code/tlib/c1&quot;<br>Installation links:<br><br></div><div>--&gt; raco setup c1<br></div><div>&lt;stuff&gt;<br><br></div><div>Completes without error.<br><br>Now imagine one performs some amount of intra-collection module refactoring, module renamings, splitting and combing modules etc.<br>
<br></div><div>We simulate this activity with a single modification to the require in m1.rkt to a now non-existent module.<br><br>;;Change<br>(require <br> (only-in &quot;m1a.rkt&quot;<br>       c1-m1a-v1))<br></div><div>
<br>;; to<br><br>(require <br> (only-in &quot;m1x.rkt&quot;<br>       c1-m1a-v1))<br><br></div><div>Build the refactored collection.<br><br>--&gt; raco setup c1<br>raco setup: version: 5.3.4.10 [3m]<br>raco setup: variants: 3m<br>
raco setup: main collects: /usr/local/racket/collects<br>raco setup: collects paths: <br>raco setup:   /home/ray/.racket/<a href="http://5.3.4.10/collects">5.3.4.10/collects</a><br>raco setup:   /usr/local/racket/collects<br>
raco setup: --- pre-installing collections ---<br>raco setup: --- installing foreign libraries ---<br>raco setup: --- compiling collections ---<br>raco setup: --- parallel build using 8 processes ---<br>raco setup: 7 making: /code/tlib/c1<br>
default-load-handler: cannot open module file<br>  module path: #&lt;path:/code/tlib/c1/m1x.rkt&gt;<br>  path: /code/tlib/c1/m1x.rkt<br>  system error: No such file or directory; errno=2<br>  context...:<br>   standard-module-name-resolver<br>
   /usr/local/racket/collects/racket/require-transform.rkt:266:2: expand-import<br>   /usr/local/racket/collects/racket/private/reqprov.rkt:375:5<br>   /usr/local/racket/collects/racket/require-transform.rkt:266:2: expand-import<br>
   try-next<br>   /usr/local/racket/collects/racket/private/reqprov.rkt:242:2<br>   success<br>   /usr/local/racket/collects/typed-racket/typed-racket.rkt:53:4<br>   /usr/local/racket/collects/compiler/cm.rkt:372:0: compile-zo*<br>
   /usr/local/racket/collects/compiler/cm.rkt:579:26<br>   /usr/local/racket/collects/compiler/cm.rkt:572:42<br>   /usr/local/racket/collects/compiler/cm.rkt:537:0: maybe-compile-zo<br>   /usr/local/racket/collects/compiler/cm.rkt:650:2: do-check<br>
   /usr/local/racket/collects/compiler/cm.rkt:731:4<br>   /usr/local/racket/collects/setup/parallel-do.rkt:420:20: loop<br><br>raco setup: --- updating info-domain tables ---<br>raco setup: --- creating launchers ---<br>raco setup: --- installing man pages ---<br>
raco setup: --- building documentation ---<br>raco setup: --- installing collections ---<br>raco setup: --- post-installing collections ---<br>raco setup: <br>raco setup: error: during making for /code/tlib/c1<br>raco setup:   default-load-handler: cannot open module file<br>
raco setup:     module path: #&lt;path:/code/tlib/c1/m1x.rkt&gt;<br>raco setup:     path: /code/tlib/c1/m1x.rkt<br>raco setup:     system error: No such file or directory; errno=2<br>raco setup:     context...:<br>raco setup:      standard-module-name-resolver<br>
raco setup:      /usr/local/racket/collects/racket/require-transform.rkt:266:2: expand-import<br>raco setup:      /usr/local/racket/collects/racket/private/reqprov.rkt:375:5<br>raco setup:      /usr/local/racket/collects/racket/require-transform.rkt:266:2: expand-import<br>
raco setup:      try-next<br>raco setup:      /usr/local/racket/collects/racket/private/reqprov.rkt:242:2<br>raco setup:      success<br>raco setup:      /usr/local/racket/collects/typed-racket/typed-racket.rkt:53:4<br>raco setup:      /usr/local/racket/collects/compiler/cm.rkt:372:0: compile-zo*<br>
raco setup:      /usr/local/racket/collects/compiler/cm.rkt:579:26<br>raco setup:      /usr/local/racket/collects/compiler/cm.rkt:572:42<br>raco setup:      /usr/local/racket/collects/compiler/cm.rkt:537:0: maybe-compile-zo<br>
raco setup:      /usr/local/racket/collects/compiler/cm.rkt:650:2: do-check<br>raco setup:      /usr/local/racket/collects/compiler/cm.rkt:731:4<br>raco setup:      /usr/local/racket/collects/setup/parallel-do.rkt:420:20: loop<br>
raco setup:<br><br>Assuming co-occurrence of output happens across an N processor raco build, we know that during the making of collection c1, module m1x was not found.<br><br>making: /code/tlib/c1<br>default-load-handler: cannot open module file<br>
  module path: #&lt;path:/code/tlib/c1/m1x.rkt&gt;<br>  path: /code/tlib/c1/m1x.rkt<br><br></div>The critical information of whom to blame is missing.  In this case, the culprit is m1.rkt, line xxx with a bogus require.<br>
<br></div>With a collection of a hundred module files or so, combined with multiple issues from the refactoring, one is in for an afternoon of recursive grepping etc.<br><div><div><div><br></div><div>Questions:<br><br></div>
<div>1) Is this currently a &quot;deep&quot; issue, in the sense of how module resolving and instantiation is performed, layered with Typed Racket&#39;s mode of implementation, layered with CM and Raco&#39;s build system that prevents a more informative error message?<br>
<br></div><div>Or<br></div><div><br></div><div>2) Is this just a simple a bug, in the sense of oops, just forgot to print the error message concerning the offending source module and line?<br><br></div><div>If its 2) I&#39;ll work on debugging for a fix.  If 1) I&#39;m just not going to be able to tunnel through raco -&gt; cm -&gt; tr -&gt; module expansion to run this down, so I&#39;ll punt.<br>
<br><br></div><div>Thanks,<br><br><br></div><div>Ray<br></div></div></div></div>