mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +00:00
11 lines
298 B
Bash
Executable file
11 lines
298 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Check for external symbols without uvg_ prefix (or _uvg_ on macOS).
|
|
|
|
set -eu${BASH+o pipefail}
|
|
|
|
if nm -go --defined-only ../lib/libuvg266.a | grep -v ' uvg_' | grep -v ' _uvg_'; then
|
|
printf '%s\n' 'Only symbols prefixed with "uvg_" should be exported from libuvg266.'
|
|
false
|
|
fi
|