mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2025-12-29 07:00:21 +00:00
binutils: Overhaul
* Rename main package to binutils-libs
* Install executables into libexec/binutils/
* Create subpackage binutils-bin not conflicting with binutils-is-llvm
- binutils-bin contains symlinks bin/{as,elfedit,gprof,ld.bfd}
* Make binutils essentially a metapackage only containing symlinks
This commit is contained in:
24
packages/binutils-libs/gas-decrease-input-buffer-size.patch
Normal file
24
packages/binutils-libs/gas-decrease-input-buffer-size.patch
Normal file
@@ -0,0 +1,24 @@
|
||||
diff -ru binutils-2.37/gas/app.c binutils-2.37_termux/gas/app.c
|
||||
--- binutils-2.37/gas/app.c 2021-07-08 19:37:19.000000000 +0800
|
||||
+++ binutils-2.37_termux/gas/app.c 2021-11-08 23:49:37.770000000 +0800
|
||||
@@ -217,7 +217,7 @@
|
||||
static int add_newlines;
|
||||
static char *saved_input;
|
||||
static size_t saved_input_len;
|
||||
-static char input_buffer[32 * 1024];
|
||||
+static char input_buffer[4 * 1024];
|
||||
static const char *mri_state;
|
||||
static char mri_last_ch;
|
||||
|
||||
diff -ru binutils-2.37/gas/input-file.c binutils-2.37_termux/gas/input-file.c
|
||||
--- binutils-2.37/gas/input-file.c 2021-07-08 19:37:19.000000000 +0800
|
||||
+++ binutils-2.37_termux/gas/input-file.c 2021-11-08 23:49:23.570000000 +0800
|
||||
@@ -37,7 +37,7 @@
|
||||
The caller only asks once what BUFFER_SIZE is, and asks before
|
||||
the nature of the input files (if any) is known. */
|
||||
|
||||
-#define BUFFER_SIZE (32 * 1024)
|
||||
+#define BUFFER_SIZE (4 * 1024)
|
||||
|
||||
/* We use static data: the data area is not sharable. */
|
||||
|
||||
Reference in New Issue
Block a user