Michael Bentley, PhD
Michael Bentley, PhD
This pull request has been updated to not just handle a depth of 1, but handles any depth. The types that are expanded are limited to - `list` - `tuple`...
Or "stable" On Sat, Jul 11, 2020, 23:10 Ian Briggs wrote: > If we are changing naming, my two cents is that since we have “branches” > the biggest one...
I'm rethinking using `main` because it is actually not our main development branch. That title goes to the `devel` branch. You suggested `trunk` to go back to SVN days and...
For a regular FLiT run, yes you can use multiple different compilers. You just need to create the appropriate entries in the `flit-config.toml` file. See https://github.com/PRUNERS/FLiT/blob/devel/documentation/standard-c++-library-implementations.md The main trickiness comes...
That does sound familiar. Sorry, it's been so long since I've actually touched this code... It looks like this has been documented in issue #40. This issue was mentioned in...
Here are some compiler capture tools I have found: - [CMake](https://clang.llvm.org/docs/JSONCompilationDatabase.html): (BSD license) with -DCMAKE_EXPORT_COMPILE_COMMANDS - [Build EAR or Bear](https://github.com/rizsotto/Bear): (GPL license) uses LD_PRELOAD and DYLD_INSERT_LIBRARIES to capture compilations "for...
Here is a good set of notes on compilation databases: https://sarcasm.github.io/notes/dev/compilation-database.html
Another article on compilation databases: https://eli.thegreenplace.net/2014/05/21/compilation-databases-for-clang-based-tools
I've started working on development here. I couldn't find a tool that does everything we need, but I found one that is close: [scan-build](https://github.com/rizsotto/scan-build). That code base is under the...
Thanks Ganesh. I like to use the GitHub issues as a task list. It helps me keep organized. And I can create a new issue when I think of something...