mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 02:03:01 +00:00
1f4feb7c6f
Adds a patch which fixes a compilation error generated by Clang 11 compiling GCC 11.3.
21 lines
570 B
Diff
21 lines
570 B
Diff
--- a/gcc/config/avr/avr.c 2022-10-08 19:18:33.000000000 +0200
|
|
+++ b/gcc/config/avr/avr.patched.c 2022-10-08 19:19:34.000000000 +0200
|
|
@@ -10196,7 +10196,7 @@
|
|
to track need of __do_copy_data. */
|
|
|
|
static void
|
|
-avr_output_data_section_asm_op (const void *data)
|
|
+avr_output_data_section_asm_op (const char *data)
|
|
{
|
|
avr_need_copy_data_p = true;
|
|
|
|
@@ -10209,7 +10209,7 @@
|
|
to track need of __do_clear_bss. */
|
|
|
|
static void
|
|
-avr_output_bss_section_asm_op (const void *data)
|
|
+avr_output_bss_section_asm_op (const char *data)
|
|
{
|
|
avr_need_clear_bss_p = true;
|
|
|