diff options
Diffstat (limited to 'vendor/librune/test/tests')
-rwxr-xr-x | vendor/librune/test/tests | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vendor/librune/test/tests b/vendor/librune/test/tests index e728773..5affe3a 100755 --- a/vendor/librune/test/tests +++ b/vendor/librune/test/tests @@ -13,7 +13,8 @@ readonly src=../data/GraphemeBreakTest.txt set -e cd "${0%/*}" -find ../lib -name '*.c' -exec cc -I../include -o gbrk gbrk.c {} + +find ../lib -name '*.c' -exec \ + cc -std=c2x -Wno-attributes -I../include -o gbrk gbrk.c {} + trap 'rm -f gbrk' EXIT n=$( |