encode: Add library for x86-64 encoding

This commit is contained in:
Alexis Engelke
2020-06-24 11:20:50 +02:00
parent 4e95c8d152
commit 69ce124354
7 changed files with 817 additions and 110 deletions

View File

@@ -2,3 +2,8 @@
decode_test = executable('test_decode', 'test_decode.c',
dependencies: fadec)
test('decode', decode_test)
encode_test = executable('test_encode', 'test_encode.c',
dependencies: fadec,
c_args: ['-D_GNU_SOURCE'])
test('encode', encode_test)