-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from pd95/fix-big-sur
Updating sources and fix execution on macOS Big Sur
- Loading branch information
Showing
15 changed files
with
93 additions
and
37 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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 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 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 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 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 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
.EXPORT_ALL_VARIABLES: | ||
|
||
BASE_DIR=$(CURDIR) | ||
|
||
# Source and destination directories | ||
ARCHIVES_DIR=$(BASE_DIR)/archive | ||
BUILD_DIR=$(BASE_DIR)/compile | ||
PACKAGES_DIR=$(BASE_DIR)/packages | ||
|
||
# Installation location | ||
PREFIX=/opt/cross-mint | ||
|
||
# Add search path for cross tools | ||
PATH:=$(PATH):/opt/cross-mint/bin | ||
|
||
# Default host architecture and system | ||
HOSTSYS=$(shell uname -s | tr "[:upper:]" "[:lower:]") | ||
ARCH=x86_64 | ||
#ARCH=$(shell uname -m | tr "[:upper:]" "[:lower:]") | ||
|
||
# Homebrew installation location | ||
HOMEBREW_PREFIX=$(shell brew config | grep HOMEBREW_PREFIX | awk '{print $$2}') | ||
|
||
########################################## | ||
VERSIONBIN=bin-$(HOSTSYS) | ||
VERSIONBINCPU=$(VERSIONBIN)-$(ARCH) | ||
VERSIONBUILD=$(shell date +%Y%m%d) | ||
|
Binary file not shown.
Binary file not shown.
File renamed without changes.