Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is libsqlite3.tbd the same as libsqlite3.dylib?

I was trying to import libsqlite3 in my project using Xcode7. What I found was libsqlite3.tbd with no icon instead it has a plain white file icon like .h and .m.

Is it the same with libsqlite3.dylib with icon?

like image 442
Jongers Avatar asked Oct 12 '15 02:10

Jongers


People also ask

What is a TBD file macOS?

A TBD file is a text-based file used by Apple Xcode, a macOS IDE used to develop iOS and macOS apps. It contains information about a . DYLIB library, the location of the DYLIB library, and symbols.

What is a TBD file Xcode?

Technical Data for TBD File Extension a tbd text-based stub librarie is a special file format by Apple and should only be edited and saved with the appropriate software.


1 Answers

In Xcode 7, it replaces the use of .dylib with .tbd. Just use the .tbd.

For those who are curious, the .tbd files are new "text-based stub libraries", that provide a much more compact version of the stub libraries for use in the SDK, and help significantly reduce its download size.

Reference: https://forums.developer.apple.com/message/8609#8609

like image 99
Raptor Avatar answered Oct 11 '22 23:10

Raptor