Skip to content
Snippets Groups Projects
  1. Aug 22, 2022
    • Simon Rose's avatar
      E3-894: Fix issue where non-existent versions would cause the build to hang · 8601a15d
      Simon Rose authored
      The ultimate issue here was that we performed a
      ```
      cat $( ... ) | sed '1d'
      ```
      and if that inner block was empty, then `cat` reverted to waiting for user input. The
      error also came up with non-specified build numbers, so we need to make sure that those
      are also being fetched correctly.
      
      The upshot is now `<module>_VERSION` will automatically fetch the correct build number;
      the only potential downside is that if we have a newer version in `${E3_SITEMODS_PATH}`
      in comparison to `${EPICS_MODULES}` (read: cellMods), then it won't pick that up. However,
      this seems to be a pretty special corner case.
      8601a15d
  2. Aug 19, 2022
  3. Aug 17, 2022
  4. Aug 09, 2022
  5. Aug 03, 2022
  6. May 05, 2022
    • Simon Rose's avatar
      Include generated dependencies · aacccaa4
      Simon Rose authored
      This follows the same pattern as the .d files generated during compilation; the
      .d files are generated as a side effect of generating the output file, and we
      then include them all at build-time to register the correct dependencies. See
      line 634 of driver.makefile.
      aacccaa4
  7. Mar 31, 2022
  8. Mar 24, 2022
  9. Mar 22, 2022
  10. Mar 21, 2022
  11. Mar 18, 2022
  12. Mar 17, 2022
  13. Mar 15, 2022
  14. Feb 14, 2022
    • Simon Rose's avatar
      Small fix for weird buffering issue · ac5611be
      Simon Rose authored
      This seems to be a very specific, limited issue, affecting virtualbox VMs only. There appears to
      be an issue with how append data is buffered and written to disk. You can see this with the
      following commands:
      
      ```console
      $ rm -f out.tmp && seq 1569 >> out.tmp && ls -l out.tmp
      -rw-r--r-- 1 simonrose vagrant 8188 Feb 14 12:12 se.tmp
      $ rm -f out.tmp && seq 1560 >> out.tmp && ls -l out.tmp
      -rw-r--r-- 1 simonrose vagrant 8192 Feb 14 12:12 se.tmp
      $ rm -f out.tmp && seq 9999 >> out.tmp && ls -l out.tmp
      -rw-r--r-- 1 simonrose vagrant 8192 Feb 14 12:12 se.tmp
      ```
      Note that the last two files are the same size, when they should clearly be quite different. If we
      remove the `>>` and replace it with a `>`, then all works correctly:
      ```console
      $ rm -f out.tmp && seq 9999 > out.tmp && ls -l out.tmp
      -rw-r--r-- 1 simonrose vagrant 48888 Feb 14 13:14 out.tmp
      ```
      Note the file size in this case.
      ac5611be
  15. Jan 12, 2022
  16. Dec 10, 2021
  17. Nov 30, 2021
  18. Nov 25, 2021
  19. Nov 12, 2021
Loading