能力值:
( LV3,RANK:30 )
|
-
-
2 楼
strip unnedd,编译参数的问题。
|
能力值:
( LV6,RANK:90 )
|
-
-
3 楼
用 strip --strip-unneeded libcryptopp.a
从70m变成了15m, 链接到可执行文件bin后,bin变大了2.3m。 2.3m还是太大。
然后又对bin strip了一下
stip --strip-unneeded bin
结果bin从2.3m变成了1.7m,感觉还是大。windows下的只有几百k。
|
能力值:
( LV2,RANK:10 )
|
-
-
4 楼
闲大可以用openssl
|
能力值:
( LV3,RANK:30 )
|
-
-
5 楼
CFLAG += - ffunction-sections -fdata-sections -fvisibility=hidden -fno-strict-aliasing
CPPFLAGS += -fvisibility-inlines-hidden
LDFLAGS = -Wl,--as-needed -Wl,-Bsymbolic -Wl,--gc-sections
strip --strip-unneeded
|
|
|