Allow installing the Coyote software library (and simulation)#185
Merged
bo3z merged 18 commits intofpgasystems:masterfrom Jan 28, 2026
Merged
Allow installing the Coyote software library (and simulation)#185bo3z merged 18 commits intofpgasystems:masterfrom
bo3z merged 18 commits intofpgasystems:masterfrom
Conversation
39ce84c to
7441093
Compare
bo3z
requested changes
Jan 22, 2026
Collaborator
bo3z
left a comment
There was a problem hiding this comment.
Mostly looks good. Most of these are minor questions for my understating.
One thing I am unclear on is: how do I compile for simulation? In the past, we used to pass the flag EN_SIM. How does it now work, in both cases (both as a system-wide installation as well as a sub-directory)
bo3z
requested changes
Jan 28, 2026
6 tasks
…low with correct env variables
Fix RDMA include issue with new Coyote libs & update simulation workf…
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR changes the CMake setup for the software side of coyote, in particular:
add_subdirectoryinstead ofFindCoyoteSW.FindCoyoteSWhas been deprecated in favor of the standardfind_packageoradd_subdirectory. A deprecation warning has been put in place, so legacy code using FindCoyoteSW won't break.#includes of coyote have been changed from#include "cThread.hpp>"toinclude <coyote/cThread.hpp>in the software library headers to avoid any conflicts breakage when headers are installed system wide.Type of change
Tests & Results
The software and simulation libraries have been compiled and installed. Files are placed in the install folder as expected. All examples have also been compiled successfully.
Checklist