Skip to content
Merged
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
4 changes: 4 additions & 0 deletions githubdocs/MacRelease.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ NB unfortunately, the XCode command line tools package is out of date, so you wi

- Currently, Mac builds are done on a High Sierra virtual machine, and the binary packages for High Sierra are used, so that is the mininum OS version for the MacOSX Minsky release. Arm64 builds are done on Ventura for the same reason.
- Ports installs of Python do not create a python3 package for pkg-config, rather they are a more specific name like python-3.12.pc. Use find to find the location of the specific .pc file, and link it to python3.pc in the same place, which will allow python builds to work.
- If you have HomeBrew installed, it's utilities may conflict with that of MacPorts. To avoid problems in that case, iit is useful to add the MacPorts bin directory to the front of the PATH variable:
Copy link

Copilot AI Dec 7, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's a double 'i' in "iit" - should be "it".

Suggested change
- If you have HomeBrew installed, it's utilities may conflict with that of MacPorts. To avoid problems in that case, iit is useful to add the MacPorts bin directory to the front of the PATH variable:
- If you have HomeBrew installed, it's utilities may conflict with that of MacPorts. To avoid problems in that case, it is useful to add the MacPorts bin directory to the front of the PATH variable:

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Dec 7, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The possessive form should use "its" (without an apostrophe) instead of "it's" (which is a contraction for "it is"). Should read: "its utilities may conflict".

Suggested change
- If you have HomeBrew installed, it's utilities may conflict with that of MacPorts. To avoid problems in that case, iit is useful to add the MacPorts bin directory to the front of the PATH variable:
- If you have HomeBrew installed, its utilities may conflict with that of MacPorts. To avoid problems in that case, iit is useful to add the MacPorts bin directory to the front of the PATH variable:

Copilot uses AI. Check for mistakes.
~~~~
export PATH=/opt/local/bin:$PATH
~~~~

# Enabling MacPorts to support earlier versions of MacOSX to the current system
- edit the file /opt/local/etc/macports/macports.conf, and add the following
Expand Down
Loading