Out-of-tree Common-Code Static Libraries

Hey all,

We are currently using local builds of particle system firmware for our application. Building on Ubuntu 16.04 using arm-none-eabi-gcc 5.3.1.

I’m working on upgrading our system firmware from 0.5.3 to 0.6.4, and eventually 0.7.0.
My current method for wrestling the particle makefile into submission is to include a custom makefile that does a bunch of hacky-scripting to inject out-of-tree relative paths to common code directories (we have multiple projects and binaries that share a common set of code, particles current build system prevents pulling in out of tree resources in multi-project setups like ours). This works just fine with 0.5.3, but breaks in 0.6.4. Still trying to figure out why, but it looks like all applications built after the first fail with multiple definitions of symbols. Could be that they are pulling files in more than once for some reason.

Instead of diving into more makefile hacks, I was wondering if there might be a better approach.
Our application is a bit too complex for a flat directory structure, and since a good chunk of the code is re-used, there is a lot of potential for some static linking here.

I’ve got a couple of questions:
What changed between 0.5.3 and 0.6.4 that might break INCLUDE_DIRS and CPPSRC? Reading through the git repo change notes, but might have already missed something.

Is it possible to direct the particle makefile to produce static libraries that can simply be linked to all the tests and applications we have? I imagine I’d need to tinker with the makefiles and fork the system firmware a bit to support this, but it would save us upwards of 20 minutes per build.

If it’s not possible to create cache-able libraries, could the common code be broken into libraries that could be referenced in each project, even if they are rebuilt each time? I’m trying to avoid symlinks and copying code for maintainability. This would mean that the particle directory structures violate this use case (since the it looks like libraries need to live inside a specific project tree).

Thanks!

What platform are you building for?
One change round about 0.5.3 was the device OS for Electrons was split into three parts where it was two parts before that.

We’re building for Electron and Photon for the moment. The 3 parts thing doesn’t seem to be holding me up at all here.

Our electron app is building (haven’t checked photon just yet). After that build is successful our top-level makefile invokes make to build the tests. The test have a different APPDIR and different path to the “common source” directory.
This all worked swimmingly in 0.5.3.
In 0.6.4 the initial build works fine. However when the tests are linked duplicate symbols are noted by the linker with incorrect paths (the duplicate symbols do not exist in the paths indicated by the compiler, and aren’t included in the files at those paths, there is only one definition of the symbol in our entire source tree).

Normally on a CPP project I would do an incremental build and re-use any object files that haven’t changed.
That seems to be happening somewhat incorrectly in this case. I’m not sure why this would work in 0.5.3 and not 0.6.4. Mostly just trying to scope my efforts for fixing it.

Explicitly using static libraries would eliminate the need for the makefile hacking we’re currently doing and provide a massive build optimization. Particle seems to support per-project libraries, but they seem to just be compiled in. Is there any support for actual library projects that can later be linked to many applications?

Thanks!