Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add soname and version support #4002

Closed
waruqi opened this issue Jul 25, 2023 · 0 comments
Closed

Add soname and version support #4002

waruqi opened this issue Jul 25, 2023 · 0 comments

Comments

@waruqi
Copy link
Member

waruqi commented Jul 25, 2023

Is your feature request related to a problem? Please describe.

Describe the solution you'd like

set_version("1.0.1") -> libfoo.so, libfoo.dylib
set_version("1.0.1", {soname = "1.0"}) -> libfoo.so.1.0, libfoo.1.0.dylib
set_version("1.0.1", {soname = "1"}) -> libfoo.so.1, libfoo.1.dylib
set_version("1.0.1", {soname = "A"}) -> libfoo.so.A, libfoo.A.dylib
set_version("1.0.1", {soname = true}) -> libfoo.so.1, libfoo.1.dylib
set_version("1.0.1", {soname = ""}) -> libfoo.so, libfoo.dylib
└── lib
    ├── libfoo.1.0.1.dylib
    ├── libfoo.1.dylib -> libfoo.1.0.1.dylib
    └── libfoo.dylib -> libfoo.1.dylib

Describe alternatives you've considered

No response

Additional context

No response

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant