Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions darwin/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Darwin `x86_64` build
# Darwin `universal` build

The `x86_64` crystal darwin build is built natively in an osx host using omnibus.
The `universal` crystal darwin build is built natively in an osx host using omnibus.
The whole process is automated using a `Makefile`.

# Dependencies

* Ruby 2.7.3 and `bundle install --binstubs` in `./omnibus`
* Ruby 3.2.2 and `bundle install --binstubs` in `./omnibus`
* `pkgconfig`, `libtool` (Can be installed by `$ brew install pkgconfig libtool`)
* Own `/opt/crystal`, `/var/cache`.

Expand Down
2 changes: 1 addition & 1 deletion omnibus/.ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.3
3.2.2
2 changes: 1 addition & 1 deletion omnibus/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,4 @@ DEPENDENCIES
omnibus-software!

BUNDLED WITH
2.2.16
2.4.22
2 changes: 1 addition & 1 deletion omnibus/config/software/crystal.rb
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
delete "#{output_bin}_arm64"

block do
raise "Could not build crystal" unless File.exists?(output_bin)
raise "Could not build crystal" unless File.exist?(output_bin)

if macos? || mac_os_x?
otool_libs = `otool -L #{output_bin}`
Expand Down