mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-22 18:55:29 +03:00
- change path of toolchain to /usr/avr/{lib,include} to match binutils - compile with --with-avrlibc - add patch to avoid stage-1 packages of gcc and avrlibc, as this for AVR not needed - fix license specifier - use system isl
27 lines
1.3 KiB
Diff
27 lines
1.3 KiB
Diff
The normal process of building a cross compilation toolchain is:
|
|
|
|
1. build GCC without the standard C lib
|
|
2. build the standard C lib
|
|
3. rebuild GCC
|
|
4. rebuild the standard C lib with the new GCC
|
|
|
|
But for AVR, GCC can be build successfully without (a provisionally version of)
|
|
the standard C headers available - likely due to the lack of libstdc++ support
|
|
for AVR. But we still need to remove the check to allow for this.
|
|
|
|
--- gcc-10.2.0.orig/gcc/Makefile.in
|
|
+++ gcc-10.2.0/gcc/Makefile.in
|
|
@@ -3156,13 +3156,6 @@
|
|
sysroot_headers_suffix=`echo $${ml} | sed -e 's/;.*$$//'`; \
|
|
multi_dir=`echo $${ml} | sed -e 's/^[^;]*;//'`; \
|
|
fix_dir=include-fixed$${multi_dir}; \
|
|
- if ! $(inhibit_libc) && test ! -d ${BUILD_SYSTEM_HEADER_DIR}; then \
|
|
- echo The directory that should contain system headers does not exist: >&2 ; \
|
|
- echo " ${BUILD_SYSTEM_HEADER_DIR}" >&2 ; \
|
|
- tooldir_sysinc=`echo "${gcc_tooldir}/sys-include" | sed -e :a -e "s,[^/]*/\.\.\/,," -e ta`; \
|
|
- if test "x${BUILD_SYSTEM_HEADER_DIR}" = "x$${tooldir_sysinc}"; \
|
|
- then sleep 1; else exit 1; fi; \
|
|
- fi; \
|
|
$(mkinstalldirs) $${fix_dir}; \
|
|
chmod a+rx $${fix_dir} || true; \
|
|
(TARGET_MACHINE='$(target)'; srcdir=`cd $(srcdir); ${PWD_COMMAND}`; \
|