Skip to content

Commit

Permalink
Add support for gobjcopy on MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
ckormanyos committed Jul 8, 2024
1 parent 578abd7 commit 66bf60e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ti84-ref_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ jobs:
run: |
cd build
sdcc -v
make TYP_OS=UNIX all
make TYP_OS=UNIX all TYP_OBJCOPY=gobjcopy
echo 'build-and-verify-refapp partial verify result'
ls -la ../bin/refapp.8xp
4 changes: 4 additions & 0 deletions build/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,11 @@ CP := $(TOOL_PREFIX)cp$(EXEEXT)
ECHO := $(TOOL_PREFIX)echo$(EXEEXT)
MKDIR := $(TOOL_PREFIX)mkdir$(EXEEXT)
MV := $(TOOL_PREFIX)mv$(EXEEXT)
ifeq ($(TYP_OBJCOPY),)
OBJCOPY := $(TOOL_PREFIX)objcopy$(EXEEXT)
else
OBJCOPY := $(TYP_OBJCOPY)
endif
PYTHON := python$(EXEEXT)
RM := $(TOOL_PREFIX)rm$(EXEEXT)

Expand Down

0 comments on commit 66bf60e

Please sign in to comment.