strip_fpic.sh
来自「网络MPEG4IP流媒体开发源代码」· Shell 代码 · 共 16 行
SH
16 行
#!/bin/sh## libtool assumes that the compiler can handle the -fPIC flag# This isn't always true (for example, nasm can't handle it)command=""while [ $1 ]; do if [ "$1" != "-fPIC" ]; then if [ "$1" != "-DPIC" ]; then command="$command $1" fi fi shiftdoneecho $commandexec $command
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?