-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enforce levelization in libxrpl with CMake #5111
base: develop
Are you sure you want to change the base?
Conversation
Define each "module" of libxrpl as a separate OBJECT library in CMake. Link each one only to modules of a lower level. Then link all of them into libxrpl itself.
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #5111 +/- ##
=========================================
- Coverage 77.9% 77.9% -0.0%
=========================================
Files 782 781 -1
Lines 66616 66618 +2
Branches 8161 8127 -34
=========================================
- Hits 51902 51896 -6
- Misses 14714 14722 +8
|
Not a review yet, but this is such a cool idea. |
cmake/RippledCore.cmake
Outdated
PRIVATE | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is probably not needed ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
actually, upon some testing, this whole target_include_directories
seem to be not needed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's not needed now that all of the subdirectories in libxrpl are modules. It was necessary as I migrated them one-by-one, and it could be necessary in the future if someone adds a non-module subdirectory. Could be nice if it "just works" without tampering with the CMake. What do you think?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps comment out and put a comment above, to explain why this is not necessary and in what condition it might become necessary again ?
I like how you moved Given we already specialize both |
I do wonder whether |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Overall very nice change. Some comments in the middle, unsure if they require changes in this PR or not.
|
Makes sense. All the more reason to make an effort moving parts of |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice improvement, thanks !
Bad news right out the gate on Windows builds:
|
@ximinez ok, try again. |
It's building successfully now. Neat workaround. Super annoying that this is an issue, though. I remember there were some Otherwise, I'll come back to the rest of this review as soon as I get some other priorities knocked out. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good 👍 Just one question - not a blocker by any means.
# add_module(parent a) | ||
# add_module(parent b) | ||
# target_link_libraries(project.libparent.b PUBLIC project.libparent.a) | ||
function(add_module parent name) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wouldn't it be even nicer if you could optionally pass the libraries to link the target with right here too? Is it possible to add the PUBLIC lib1 lib2
through args somehow?
Adds two CMake functions:
add_module(library subdirectory)
: Declares anOBJECT
"library" (a CMake abstraction for a collection of object files) with sources from the given subdirectory of the given library, representing a module. Isolates the module's headers by creating a subdirectory in the build directory, e.g..build/tmp123
, that contains just a symlink, e.g..build/tmp123/basics
, to the module's header directory,e.g. include/xrpl/basics
, in the source directory, and putting.build/tmp123
(but notinclude/xrpl
) on the include path of the module sources. This prevents the module sources from including headers not explicitly linked to the module in CMake withtarget_link_libraries
.target_link_modules(library scope modules...)
: Links the library target to each of the module targets, and removes their sources from its source list (so they are not compiled and linked twice).Uses these functions to separate and explicitly link modules in libxrpl:
beast
basics
json
,crypto
protocol
resource
,server