Hi,
in S32DS 2017.R1, I create a S32DS library project, and am going to create a big lib file, which will put other sub lib files together.
for instance, create a libsdk.a library, this library will contain a.c, b.c, and lib1.a, lib2.a, lib3.a.
in the archiver settings, I didn't firgure out how to add the additional library files.
Hi, Jiri
finally, I figured out the build script to create huge lib. I added it in build-step commands, and it works.
thanks for your help.
mkdir -pv sdk_own/lib && cd sdk_own/lib && rm -f *.o && for i in ${ProjDirPath}/sdk_own/lib/libfmc_*.a; do powerpc-eabivle-ar -xv $$i; done
powerpc-eabivle-ar -rcsv ${BuildArtifactFilePrefix}${BuildArtifactFileName} sdk_own/lib/*.o && cp -fv ${BuildArtifactFilePrefix}${BuildArtifactFileName} ${ProjDirPath}/../common/sdk/lib/