Re: [f2fs-dev] [PATCH] f2fs-tools: add library version info

2015-12-15 Thread Jaegeuk Kim
Hello, Cool, I also think it would be good to support versions to libs. I don't expect that libs are likely to move so fast. Thanks, 2015-12-15 7:28 GMT-08:00 Hans-Christoph Steiner : > > It would be great to have the full versioned shared library, but if > it'll make things move faster, we can

Re: [f2fs-dev] [PATCH] f2fs-tools: add library version info

2015-12-15 Thread Hans-Christoph Steiner
It would be great to have the full versioned shared library, but if it'll make things move faster, we can solve our Android SDK issues with only a static library. Then the shared library can come later. .hc 殷啟聰: > Hi Kim, > > Maybe we can forget about the versioning for now. Libtool's versioni

Re: [f2fs-dev] [PATCH] f2fs-tools: add library version info

2015-12-15 Thread 殷啟聰
Hi Kim, Maybe we can forget about the versioning for now. Libtool's versioning mechanism is a little bit complicated and adding the version to SONAME will likely cause big or small problems for so many downstream projects. Why don't we simply add the libf2fs_format? That won't hurt anyway. :) Re

[f2fs-dev] [PATCH] f2fs-tools: add library version info

2015-12-09 Thread Jaegeuk Kim
This patch gives the version info for two libraries. mkfs/libf2fs_format.la lib/libf2fs.la The versioning rule should be: 1. Start with version information of '0:0:0' for each libtool library. 2. Update the version information only immediately before a public release of your software. More fr