⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 aixmakesharedlib

📁 PIXIL is a small footprint operating environment, complete with PDA PIM applications, a browser and
💻
字号:
#!/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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -