From: Gustaf N. <ne...@wu...> - 2018-05-13 19:42:31
|
On 13.05.18 18:36, Iuri Sampaio wrote: > Btw, > Is there any reason to .o and .so be missing on bitbucket repository > (i.e. https://bitbucket.org/naviserver/nsldap/src/default/ ) ? > If not, do upload them there, please! the extension .o stands for an "object" file, .so stands for "shared object". The .o files are dependent on the machine architecture and are generated by a compiler such as "gcc", "clang" or others. The repository on bitbucket is a *source code* repository, this is no place for *binaries*. Get some tutorials concerning C and make, such as e.g. [1] which i found after 1min of googling around. -gn [1] https://www.thegeekstuff.com/2010/08/make-utility/ |