0012-gcc-Fix-argument-list-too-long-error.patch 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. From 12646c0899dec1b127ce71ebacf2571c1c7360f4 Mon Sep 17 00:00:00 2001
  2. From: Khem Raj <raj.khem@gmail.com>
  3. Date: Fri, 29 Mar 2013 09:26:37 +0400
  4. Subject: [PATCH] gcc: Fix argument list too long error.
  5. There would be an "Argument list too long" error when the
  6. build directory is longer than 200, this is caused by:
  7. headers=`echo $(PLUGIN_HEADERS) | tr ' ' '\012' | sort -u`
  8. The PLUGIN_HEADERS is too long before sort, so the "echo" can't handle
  9. it, use the $(sort list) of GNU make which can handle the too long list
  10. would fix the problem, the header would be short enough after sorted.
  11. The "tr ' ' '\012'" was used for translating the space to "\n", the
  12. $(sort list) doesn't need this.
  13. Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
  14. Signed-off-by: Khem Raj <raj.khem@gmail.com>
  15. RP: gcc then added *.h and *.def additions to this list, breaking the original
  16. fix. Add the sort to the original gcc code, leaving the tr+sort to fix the original
  17. issue but include the new files too as reported by Zhuang <qiuguang.zqg@alibaba-inc.com>
  18. Upstream-Status: Pending
  19. Signed-off-by: Khem Raj <raj.khem@gmail.com>
  20. ---
  21. gcc/Makefile.in | 2 +-
  22. 1 file changed, 1 insertion(+), 1 deletion(-)
  23. diff --git a/gcc/Makefile.in b/gcc/Makefile.in
  24. index 7da6f439fff..59c45c81393 100644
  25. --- a/gcc/Makefile.in
  26. +++ b/gcc/Makefile.in
  27. @@ -3678,7 +3678,7 @@ install-plugin: installdirs lang.install-plugin s-header-vars install-gengtype
  28. # We keep the directory structure for files in config, common/config or
  29. # c-family and .def files. All other files are flattened to a single directory.
  30. $(mkinstalldirs) $(DESTDIR)$(plugin_includedir)
  31. - headers=`echo $(PLUGIN_HEADERS) $$(cd $(srcdir); echo *.h *.def) | tr ' ' '\012' | sort -u`; \
  32. + headers=`echo $(sort $(PLUGIN_HEADERS)) $$(cd $(srcdir); echo *.h *.def) | tr ' ' '\012' | sort -u`; \
  33. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`; \
  34. for file in $$headers; do \
  35. if [ -f $$file ] ; then \