ValYouW / tflite-dist

TensorFlow Lite C/C++ distribution libraries and headers
MIT License
111 stars 19 forks source link

What is `.dll.if.lib`? #15

Closed fzyzcjy closed 2 years ago

fzyzcjy commented 2 years ago

Hi thanks for the prebuilt library! I am new to windows programming, so I am a bit confused what is the extension .dll.if.lib? I have only seen .dll and .lib files.

ValYouW commented 2 years ago

It's just a regular lib file, you need it in order to link the project with tflite.... not sure why they give it such an extension and not just ".lib"

fzyzcjy commented 2 years ago

Interesting... I know what is lib and why I need that, just curious whether .dll.if prefix has some special meaning. Thank you!