-
-
Notifications
You must be signed in to change notification settings - Fork 12.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
lightgbm 2.2.3 (new formula) #43244
lightgbm 2.2.3 (new formula) #43244
Conversation
Please don't specify the amount of jobs in the makefile. It might cause issues with building. |
My bad, updated |
Formula/lightgbm.rb
Outdated
system "cmake", *args, ".." | ||
system "make" | ||
end | ||
lib.install "lib_lightgbm.so" |
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.
Shared libraries on macOS should be .dylib
, not .so
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.
Fixed this as well with an additional flag.
Formula/lightgbm.rb
Outdated
system "make" | ||
end | ||
lib.install "lib_lightgbm.so" | ||
bin.install "lightgbm" |
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.
Is there no make install
target?
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.
Hey @fxcoudert, thanks for the feedback. There was a make install
target, so switched to that.
This is great! Merging. |
Thanks @fxcoudert and @SMillerDev 🎉 |
brew install --build-from-source <formula>
, where<formula>
is the name of the formula you're submitting?brew test <formula>
, where<formula>
is the name of the formula you're submitting?brew audit --strict <formula>
(after doingbrew install <formula>
)?