0004-configure-match-uclinux-pattern.patch 937 B

1234567891011121314151617181920212223242526272829303132
  1. From f8ecc7fb09adf34a23d324f373e667c81311fc1c Mon Sep 17 00:00:00 2001
  2. From: Romain Naour <romain.naour@gmail.com>
  3. Date: Sat, 6 Aug 2016 23:24:35 +0200
  4. Subject: [PATCH] configure: match uclinux pattern
  5. bdwgc does not recognize "uclinux" as a valid OS part of the target
  6. tuple which is used by some arm cortex-M toolchains.
  7. Fixes:
  8. http://autobuild.buildroot.net/results/94f/94fbc1e5afe183e5b071d1e869b2d780025389e2
  9. Signed-off-by: Romain Naour <romain.naour@gmail.com>
  10. ---
  11. configure.ac | 2 +-
  12. 1 file changed, 1 insertion(+), 1 deletion(-)
  13. diff --git a/configure.ac b/configure.ac
  14. index b1ce2b2..a69d101 100644
  15. --- a/configure.ac
  16. +++ b/configure.ac
  17. @@ -186,7 +186,7 @@ case "$THREADS" in
  18. AC_DEFINE(THREAD_LOCAL_ALLOC)
  19. AC_MSG_WARN("Explicit GC_INIT() calls may be required.");
  20. ;;
  21. - *-*-linux*)
  22. + *-*-*linux*)
  23. AC_DEFINE(GC_LINUX_THREADS)
  24. AC_DEFINE(_REENTRANT)
  25. ;;
  26. --
  27. 2.5.5