aixmakesharedlib
来自「pixil 最新的嵌入linux 應用程序集,別的地方很難下載」· 代码 · 共 25 行
TXT
25 行
#!/bin/sh## aixmakesharedlib - a simple script for AIX shared lib creation from a# non shared library## Notes:# - Should work for both AIX 3.2.x & 4.1.x# - Copies original (non shared) lib to be lib.NS# - May require slight modifications for different uses (this was written# with the FL library in mind)#/bin/rm -f shr.o syms.exp# create the exports list:echo "#!" > syms.expdump -g $1 | egrep -e '[ \t]*[0-9]+' | sed 's/^[ \t]*[0-9][0-9]*[ \t]*[^ \t]//' | sed 's/^\.//' | sort | uniq >> syms.expxlC -o shr.o $1 -bM:SRE -bE:syms.exp -bnoentry -lc -lm -lX11mv $1 $1.NSar ruv $1 shr.o syms.exp/bin/rm -f shr.o syms.exp
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?