File tree 3 files changed +14
-7
lines changed
3 files changed +14
-7
lines changed Original file line number Diff line number Diff line change 8
8
apt :
9
9
packages :
10
10
- p7zip-full
11
- homebrew :
12
- packages :
13
- - p7zip
11
+ # osx handles this in 'before_install'
14
12
# windows/choco comes with 7zip.install 18.5.0.20180730
15
13
16
14
# python is painful ..
25
23
- source venv/bin/activate
26
24
- name : " macOS"
27
25
os : osx
28
- osx_image : xcode11.2
26
+ osx_image : xcode11.3
29
27
# - name: "Windows"
30
28
# os: windows
31
29
# before_install:
36
34
# - python -m pip install --upgrade pip
37
35
# env: PATH=/c/tools/python-x86_32:/c/tools/python-x86_32/Scripts:$PATH
38
36
37
+ before_install :
38
+ if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install p7zip ; fi
39
+
39
40
install :
40
41
- python --version
41
42
- pip --version
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ VBCC := $(abspath $(CACHE_DIR))
17
17
NDK := $(CACHE_DIR)/NDK_3.9
18
18
SANA2 := $(CACHE_DIR)/sana2
19
19
AHI := $(CACHE_DIR)/ahi
20
+ AMITCP := $(CACHE_DIR)/AmiTCP-SDK-4.3
20
21
21
22
INC_ASM := $(NDK)/Include/include_i/
22
23
LVO := $(INC_ASM)lvo
@@ -26,7 +27,7 @@ LVOS := $(addprefix $(LVO)/,$(SFD:.sfd=.i))
26
27
27
28
.PHONY: distclean lvos buildenv $(VASM) $(VLINK) $(VC)
28
29
29
- buildenv: $(VASM) $(VLINK) $(VC) $(VC_CFG) $(VC_M68K) $(NDK) $(LVO) $(SANA2) $(AHI)
30
+ buildenv: $(VASM) $(VLINK) $(VC) $(VC_CFG) $(VC_M68K) $(NDK) $(LVO) $(SANA2) $(AHI) $(AMITCP)
30
31
# @echo "** $@ done"
31
32
32
33
@@ -99,6 +100,11 @@ $(AHI): | $(CACHE_DIR)
99
100
cd $(CACHE_DIR) && rm -rf m68k-amigaos-ahi/Developer/Include
100
101
cd $(CACHE_DIR) && rm -rf m68k-amigaos-ahidev.lha
101
102
103
+ $(AMITCP): | $(CACHE_DIR)
104
+ cd $(CACHE_DIR) && wget http://aminet.net/comm/tcp/AmiTCP-SDK-4.3.lha
105
+ cd $(CACHE_DIR) && 7z x -y AmiTCP-SDK-4.3.lha AmiTCP-SDK-4.3
106
+ cd $(CACHE_DIR) && rm -rf AmiTCP-SDK-4.3.lha
107
+
102
108
$(LVO): | $(NDK)
103
109
cd $(CACHE_DIR) && wget http://aminet.net/dev/gcc/sfdc.lha
104
110
cd $(CACHE_DIR) && 7z x sfdc.lha && mv sfdc-master sfdc
Original file line number Diff line number Diff line change 1
- -cc =%%VBCC%%/bin/vbccm68k -quiet -hunkdebug %s -o = %s %s -O =%ld -I" %%VBCC%%/targets/m68k-amigaos/include" -I" %%VBCC%%/NDK_3.9/Include/include_h" -I" %%VBCC%%/targets/m68k-amigaos /netinclude"
2
- -ccv =%%VBCC%%/bin/vbccm68k -hunkdebug %s -o = %s %s -O =%ld -I" %%VBCC%%/targets/m68k-amigaos/include" -I" %%VBCC%%/NDK_3.9/Include/include_h" -I" %%VBCC%%/targets/m68k-amigaos /netinclude"
1
+ -cc =%%VBCC%%/bin/vbccm68k -quiet -hunkdebug %s -o = %s %s -O =%ld -I" %%VBCC%%/targets/m68k-amigaos/include" -I" %%VBCC%%/NDK_3.9/Include/include_h" -I" %%VBCC%%/AmiTCP-SDK-4.3 /netinclude"
2
+ -ccv =%%VBCC%%/bin/vbccm68k -hunkdebug %s -o = %s %s -O =%ld -I" %%VBCC%%/targets/m68k-amigaos/include" -I" %%VBCC%%/NDK_3.9/Include/include_h" -I" %%VBCC%%/AmiTCP-SDK-4.3 /netinclude"
3
3
-as =%%VBCC%%/bin/vasmm68k_mot -quiet -Fhunk -phxass -opt-fconst -nowarn =62 %s -o %s
4
4
-asv =%%VBCC%%/bin/vasmm68k_mot -Fhunk -phxass -opt-fconst -nowarn =62 %s -o %s
5
5
-rm =rm %s
You can’t perform that action at this time.
0 commit comments