Skip to content
Snippets Groups Projects
  1. Jun 14, 2019
  2. Jun 10, 2019
  3. Dec 18, 2018
  4. Nov 01, 2018
  5. Jul 31, 2018
  6. Feb 23, 2018
  7. Aug 01, 2017
  8. Jun 23, 2017
  9. Jun 22, 2017
  10. May 11, 2017
    • Moritz Angermann's avatar
      Update configure.ac · eb5fc942
      Moritz Angermann authored and Herbert Valerio Riedel's avatar Herbert Valerio Riedel committed
      Add Comment
      eb5fc942
    • Moritz Angermann's avatar
      Android doesn’t have mkstemps · b5b62536
      Moritz Angermann authored and Herbert Valerio Riedel's avatar Herbert Valerio Riedel committed
      However the check similarly to tell and seekdir succeeds. However we will generate the following error down the line:
      ```
      /var/folders/fv/xqjrpfj516n5xq_m_ljpsjx00000gn/T/ghc13524_0/ghc_2.c:11:104: error:
           warning: implicit declaration of function 'mkstemps' is invalid in C99 [-Wimplicit-function-declaration]
         |
      11 | HsInt32 ghczuwrapperZC1ZCunixzm2zi7zi2zi1ZCSystemziPosixziTempZCmkstemps(void* a1, HsInt32 a2) {return mkstemps(a1, a2);}
         |                                                                                                        ^
      HsInt32 ghczuwrapperZC1ZCunixzm2zi7zi2zi1ZCSystemziPosixziTempZCmkstemps(void* a1, HsInt32 a2) {return mkstemps(a1, a2);}
                                                                                                             ^
      ```
      b5b62536
    • Moritz Angermann's avatar
      Update config.{guess,sub} · 9c2df120
      Moritz Angermann authored and Herbert Valerio Riedel's avatar Herbert Valerio Riedel committed
      Autoconf hasn’t had an update since 2014, and it doesn’t look like it will soon[1]
      This updates config.{guess,sub}
      
      It basically does exactly what the config.guess script says:
      > It is advised that you download the most up to date version of the config scripts from
      
      It adds support for e.g. `-ios`, which allows to have targets like `aarch64-apple-ios`.
      
      —
      [1]: http://lists.gnu.org/archive/html/autoconf/2016-07/msg00017.html
      9c2df120
  11. Apr 30, 2017
  12. Mar 20, 2017
    • Herbert Valerio Riedel's avatar
      Merge pull request #92 from zw3rk/feature/seekdir · 19aaa0fc
      Herbert Valerio Riedel authored
      Android doesn’t have telldir/seekdir in bionic
      19aaa0fc
    • Moritz Angermann's avatar
      Android doesn’t have telldir/seekdir in bionic · 540a317a
      Moritz Angermann authored
      The isse here is that while we try to use `AC_CHECK_FUNCS`, this will generate test code
      that tries to link an object and check for linking errors.  However  GNU gold at least version
      (binutils-2.25-0666073 2.25.51.20141117) 1.11, considers seekdir/telldir as part of the
      default libs. Thus we would actually want to pass `-nodefaultlibs` to the linker. Doing so,
      would result in erros due to not finding `-ldl`.
      
      Fixes #91
      540a317a
  13. Mar 15, 2017
  14. Feb 20, 2017
  15. Feb 14, 2017
  16. Feb 08, 2017
    • Niklas Hambüchen's avatar
      Fix error message of `createSymbolicLink`. · fae5cdc1
      Niklas Hambüchen authored
      Consider `ln` (or any other Unix tool):
      
          $ ln -s file1 file2
          $ ls -l file2
          lrwxrwxrwx 1 niklas niklas 5 Feb  8 03:09 file2 -> file1
          $ ln -s file1 file2
          ln: failed to create symbolic link 'file2': File exists
      
      The file name mentioned in the error ("link2") is the one
      that *could not be created*, not the content of the pointer.
      
      `createSymbolicLink` got this wrong so far, it would print
      
          file1: createSymbolicLink: already exists (File exists)
      
      which is wrong, this file doesn't already exist.
      
      This commit fixes it.
      fae5cdc1
  17. Dec 15, 2016
  18. Nov 20, 2016
  19. Nov 17, 2016
  20. Nov 15, 2016
  21. Nov 11, 2016
  22. Oct 16, 2016
  23. Oct 13, 2016
  24. Sep 08, 2016
  25. Sep 06, 2016
  26. Jun 24, 2016
  27. Jun 02, 2016
  28. Apr 19, 2016
Loading