1. Apr 29, 2020
  2. Apr 28, 2020
    • Sebastian Kuzminsky's avatar
      build using the C11 standard · e743729c
      Sebastian Kuzminsky authored
      This is needed for older compilers (like Wheezy's gcc 4.7.2 and Jessie's
      gcc 4.9.2) to accept "modern" things like for-loops with the index
      variable declared in them:
      
      hostmot2.c:759:5: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
           for (int i = 0; i < num_pins; i ++) {
            ^
      hostmot2.c:759:5: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code
      
      This also means we no longer need to override CFLAGS in the travis config.
      e743729c
  3. Apr 27, 2020
  4. Apr 26, 2020
  5. Apr 25, 2020
  6. Apr 24, 2020