make32and64.sh

来自「Video IO toolbox for matlab. 用directsho」· Shell 代码 · 共 22 行

SH
22
字号
#!/bin/bash## Use this script to build a complete complement of 32-bit and 64-bit videoIO ## plugins on 64-bit Linux machines that have 32-bit ffmpeg, 64-bit ffmpeg, ## 32-bit Matlab, and 64-bit Matlab.# Build 32-bit mex components.make mex MEXEXT=mexglx FFMPEG_ARCH=-glnx86 # Build 64-bit mex componentsmake mex MEXEXT=mexa64 FFMPEG_ARCH=-glnxa64# We must choose one backend for the popen2 plugins to avoid filename clashes.# For now, we will prefer 64-bit backends.  ## FUTURE: The more general solution would be to allow backends that avoid the # conflicts, but this would complicate mexClientPopen2.cpp and it's unlikely # that anyone will need that functionality.make server MEXEXT=mexa64 FFMPEG_ARCH=-glnxa64

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?