SiliconLabs / simplicity_sdk

The Simplicity Software Development Kit (SDK) is an embedded software development platform for building IoT products based on our Series 2 and upcoming Series 3 wireless and MCU devices.
https://www.silabs.com/
Other
25 stars 5 forks source link

Don't use `build` and `release` directories #12

Open tanadeau opened 2 months ago

tanadeau commented 2 months ago

The SDK delivers several archive (.a files). For example:

Common .gitignore and similar configurations will ignore build, debug, release, etc. directories from version control. If using the SDK copy strategy for vendoring purposes, the needed .a files will be ignored. Similar to the emdrv or rail_lib examples above, can the bluetooth stack's .a files be put into a lib or lib_release directory? The current workaround would be to git add -f the files; however, forgetting the workaround results in very strange compilation errors.