summaryrefslogtreecommitdiffstats
path: root/compat
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2017-09-13 23:05:50 +0300
committerMartin Storsjö <martin@martin.st>2017-10-12 21:49:19 +0300
commita37e84be69310cd7de9540c8bc194cb0a6d158ed (patch)
tree7e39aec34370e405e3d42064d50cac44d2b4998c /compat
parent40d5df67d2c4e1f0dd1e902435567eb5edad6a9a (diff)
downloadffmpeg-streaming-a37e84be69310cd7de9540c8bc194cb0a6d158ed.zip
ffmpeg-streaming-a37e84be69310cd7de9540c8bc194cb0a6d158ed.tar.gz
makedef: Add support for identifying the ARM64 machine type
Since this machine type is 5 chars while the existing ones only were 3 (which the regexp assumed), the regexp has to be extended a little. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'compat')
-rwxr-xr-xcompat/windows/makedef4
1 files changed, 2 insertions, 2 deletions
diff --git a/compat/windows/makedef b/compat/windows/makedef
index fd7959a..0cd169c 100755
--- a/compat/windows/makedef
+++ b/compat/windows/makedef
@@ -74,12 +74,12 @@ else
tr '\t' ' ' |
grep '^ \+.\+machine \+(.\+)' |
head -1 |
- sed -e 's/^ \{1,\}.\{1,\} \{1,\}machine \{1,\}(\(...\)).*/\1/')
+ sed -e 's/^ \{1,\}.\{1,\} \{1,\}machine \{1,\}(\(.\{3,5\}\)).*/\1/')
if [ "${arch}" = "x86" ]; then
prefix="_"
else
- if [ "${arch}" != "ARM" ] && [ "${arch}" != "x64" ]; then
+ if [ "${arch}" != "ARM" ] && [ "${arch}" != "x64" ] && [ "${arch}" != "ARM64" ]; then
echo "Unknown machine type." >&2
exit 1
fi
OpenPOWER on IntegriCloud