Creating a Deployable SDK style MW:COM Package #2482
Replies: 2 comments 2 replies
-
|
I like the idea. We are currently working on a S-CORE CLI(https://github.com/mercedes-benz/score_scrample/tree/feature/scorex). That could be something we can integrate there. |
Beta Was this translation helpful? Give feedback.
-
|
@btirunagaru I guess the problem is that you do not know the build system of the customer. If you only provide .so and header files, the customer will need to manually configure their build system to locate these files, set up the correct include paths, and link against the shared libraries. This can be a tedious and error-prone process, especially there can be complex dependencies or specific compiler flags are required. You'll want to provide a very good documentation and/or potentially even helper scripts/configuration files that make this integration as smooth as possible for various common build systems. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
We would like to deploy MW:COM as a (shared object & headers ) prebuilt package ( in a SDK style) in our platforms preferably single dynamic library.
Meaning an .so & public headers ( cross compiled for our platform ). App developers will be using .so and headers/data files that are required to build their applications ( instead of using a Bazel SRC projects ).
As a part of that – we seem to encounter specific problems and looking for recommendation on how to resolve this.
(or) does the contributors here can suggest on what next steps.
Issues Identified in our study
Next Steps:
Is there any improvement/work item that targets to include BUILD file that lets the users of the project to create a shared object & header package creation. (By resolving the dependency chain & adding necessary exports to truly public headers for app developers talking to MW:COM API).
Beta Was this translation helpful? Give feedback.
All reactions