mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +00:00
11 lines
261 B
Bash
11 lines
261 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Check for external symbols without kvz_ prefix.
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
if nm -go --defined-only ../src/.libs/libkvazaar.a | grep -v ' kvz_'; then
|
||
|
printf '%s\n' 'Only symbols prefixed with "kvz_" should be exported from libkvazaar.'
|
||
|
false
|
||
|
fi
|