-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Revamp CmakeBuilder #8753
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
Merged
Merged
Revamp CmakeBuilder #8753
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,21 +1,110 @@ | ||
| # frozen_string_literal: true | ||
|
|
||
| # This builder creates extensions defined using CMake. Its is invoked if a Gem's spec file | ||
| # sets the `extension` property to a string that contains `CMakeLists.txt`. | ||
| # | ||
| # In general, CMake projects are built in two steps: | ||
| # | ||
| # * configure | ||
| # * build | ||
| # | ||
| # The builder follow this convention. First it runs a configuration step and then it runs a build step. | ||
| # | ||
| # CMake projects can be quite configurable - it is likely you will want to specify options when | ||
| # installing a gem. To pass options to CMake specify them after `--` in the gem install command. For example: | ||
| # | ||
| # gem install <gem_name> -- --preset <preset_name> | ||
| # | ||
| # Note that options are ONLY sent to the configure step - it is not currently possible to specify | ||
| # options for the build step. If this becomes and issue then the CMake builder can be updated to | ||
| # support build options. | ||
| # | ||
| # Useful options to know are: | ||
| # | ||
| # -G to specify a generator (-G Ninja is recommended) | ||
| # -D<CMAKE_VARIABLE> to set a CMake variable (for example -DCMAKE_BUILD_TYPE=Release) | ||
| # --preset <preset_name> to use a preset | ||
| # | ||
| # If the Gem author provides presets, via CMakePresets.json file, you will likely want to use one of them. | ||
| # If not, you may wish to specify a generator. Ninja is recommended because it can build projects in parallel | ||
| # and thus much faster than building them serially like Make does. | ||
|
|
||
| class Gem::Ext::CmakeBuilder < Gem::Ext::Builder | ||
| def self.build(extension, dest_path, results, args = [], lib_dir = nil, cmake_dir = Dir.pwd, | ||
| attr_accessor :runner, :profile | ||
| def initialize | ||
| @runner = self.class.method(:run) | ||
| @profile = :release | ||
| end | ||
|
|
||
| def build(extension, dest_path, results, args = [], lib_dir = nil, cmake_dir = Dir.pwd, | ||
| target_rbconfig = Gem.target_rbconfig) | ||
| if target_rbconfig.path | ||
| warn "--target-rbconfig is not yet supported for CMake extensions. Ignoring" | ||
| end | ||
|
|
||
| unless File.exist?(File.join(cmake_dir, "Makefile")) | ||
| require_relative "../command" | ||
| cmd = ["cmake", ".", "-DCMAKE_INSTALL_PREFIX=#{dest_path}", *Gem::Command.build_args] | ||
| # Figure the build dir | ||
| build_dir = File.join(cmake_dir, "build") | ||
|
|
||
| run cmd, results, class_name, cmake_dir | ||
| end | ||
| # Check if the gem defined presets | ||
| check_presets(cmake_dir, args, results) | ||
|
|
||
| # Configure | ||
| configure(cmake_dir, build_dir, dest_path, args, results) | ||
|
|
||
| make dest_path, results, cmake_dir, target_rbconfig: target_rbconfig | ||
| # Compile | ||
| compile(cmake_dir, build_dir, args, results) | ||
|
|
||
| results | ||
| end | ||
|
|
||
| def configure(cmake_dir, build_dir, install_dir, args, results) | ||
| cmd = ["cmake", | ||
| cmake_dir, | ||
| "-B", | ||
| build_dir, | ||
| "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=#{install_dir}", # Windows | ||
| "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=#{install_dir}", # Not Windows | ||
| *Gem::Command.build_args, | ||
| *args] | ||
|
|
||
| runner.call(cmd, results, "cmake_configure", cmake_dir) | ||
| end | ||
|
|
||
| def compile(cmake_dir, build_dir, args, results) | ||
| cmd = ["cmake", | ||
| "--build", | ||
| build_dir.to_s, | ||
| "--config", | ||
| @profile.to_s] | ||
|
|
||
| runner.call(cmd, results, "cmake_compile", cmake_dir) | ||
| end | ||
|
|
||
| private | ||
|
|
||
| def check_presets(cmake_dir, args, results) | ||
| # Return if the user specified a preset | ||
| return unless args.grep(/--preset/i).empty? | ||
|
|
||
| cmd = ["cmake", | ||
| "--list-presets"] | ||
|
|
||
| presets = Array.new | ||
| begin | ||
| runner.call(cmd, presets, "cmake_presets", cmake_dir) | ||
|
|
||
| # Remove the first two lines of the array which is the current_directory and the command | ||
| # that was run | ||
| presets = presets[2..].join | ||
| results << <<~EOS | ||
| The gem author provided a list of presets that can be used to build the gem. To use a preset specify it on the command line: | ||
|
|
||
| gem install <gem_name> -- --preset <preset_name> | ||
|
|
||
| #{presets} | ||
| EOS | ||
| rescue Gem::InstallError | ||
| # Do nothing, CMakePresets.json was not included in the Gem | ||
| end | ||
| end | ||
| end | ||
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
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.
Uh oh!
There was an error while loading. Please reload this page.