trylink: produce even more info about final link stage
trylink: explain how to modify link and drastically decrease amount of padding (unfortunately, needs hand editing ATM). *: add ALIGN1 / ALIGN2 to global strings and arrays of bytes and shorts size saving: 0.5k
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
#include "libbb.h"
|
||||
|
||||
/* Conversion table. for base 64 */
|
||||
const char bb_uuenc_tbl_base64[65 + 2] = {
|
||||
const char bb_uuenc_tbl_base64[65 + 2] ALIGN1 = {
|
||||
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H',
|
||||
'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P',
|
||||
'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
|
||||
@@ -21,7 +21,7 @@ const char bb_uuenc_tbl_base64[65 + 2] = {
|
||||
'\n', '\0' /* needed for uudecode.c */
|
||||
};
|
||||
|
||||
const char bb_uuenc_tbl_std[65] = {
|
||||
const char bb_uuenc_tbl_std[65] ALIGN1 = {
|
||||
'`', '!', '"', '#', '$', '%', '&', '\'',
|
||||
'(', ')', '*', '+', ',', '-', '.', '/',
|
||||
'0', '1', '2', '3', '4', '5', '6', '7',
|
||||
|
||||
Reference in New Issue
Block a user