-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheco32.patch
More file actions
101 lines (87 loc) · 3.43 KB
/
eco32.patch
File metadata and controls
101 lines (87 loc) · 3.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
diff --color --exclude=.git -ruN eco32/disk/tools/mkgpt/Makefile eco32/disk/tools/mkgpt/Makefile
--- eco32/disk/tools/mkgpt/Makefile 2025-01-28 01:29:19
+++ eco32/disk/tools/mkgpt/Makefile 2025-01-28 00:26:31
@@ -5,8 +5,8 @@
BUILD = ../../../build
CC = gcc
-CFLAGS = -g -Wall
-LDFLAGS = -g
+CFLAGS = -g -Wall -I/opt/homebrew/opt/util-linux/include
+LDFLAGS = -g -L/opt/homebrew/opt/util-linux/lib
LDLIBS = -luuid -lm
SRCS = mkgpt.c
diff --color --exclude=.git -ruN eco32/disk/tools/mkpart/Makefile eco32/disk/tools/mkpart/Makefile
--- eco32/disk/tools/mkpart/Makefile 2025-01-28 01:29:19
+++ eco32/disk/tools/mkpart/Makefile 2025-01-28 00:28:56
@@ -5,8 +5,8 @@
BUILD = ../../../build
CC = gcc
-CFLAGS = -g -Wall
-LDFLAGS = -g
+CFLAGS = -g -Wall -I/opt/homebrew/opt/util-linux/include
+LDFLAGS = -g -L/opt/homebrew/opt/util-linux/lib
LDLIBS = -luuid -lm
SRCS = mkpart.c
diff --color --exclude=.git -ruN eco32/disk/tools/rmpart/Makefile eco32/disk/tools/rmpart/Makefile
--- eco32/disk/tools/rmpart/Makefile 2025-01-28 01:29:19
+++ eco32/disk/tools/rmpart/Makefile 2025-01-28 00:30:21
@@ -5,8 +5,8 @@
BUILD = ../../../build
CC = gcc
-CFLAGS = -g -Wall
-LDFLAGS = -g
+CFLAGS = -g -Wall -I/opt/homebrew/opt/util-linux/include
+LDFLAGS = -g -L/opt/homebrew/opt/util-linux/lib
LDLIBS = -luuid -lm
SRCS = rmpart.c
diff --color --exclude=.git -ruN eco32/disk/tools/shgpt/Makefile eco32/disk/tools/shgpt/Makefile
--- eco32/disk/tools/shgpt/Makefile 2025-01-28 01:29:19
+++ eco32/disk/tools/shgpt/Makefile 2025-01-28 00:29:47
@@ -5,8 +5,8 @@
BUILD = ../../../build
CC = gcc
-CFLAGS = -g -Wall
-LDFLAGS = -g
+CFLAGS = -g -Wall -I/opt/homebrew/opt/util-linux/include
+LDFLAGS = -g -L/opt/homebrew/opt/util-linux/lib
LDLIBS = -luuid -lm
SRCS = shgpt.c
diff --color --exclude=.git -ruN eco32/disk/tools/shpart/depend.mak eco32/disk/tools/shpart/depend.mak
--- eco32/disk/tools/shpart/depend.mak 1970-01-01 01:00:00
+++ eco32/disk/tools/shpart/depend.mak 2025-01-27 23:43:02
@@ -0,0 +1 @@
+shpart.o: shpart.c
diff --color --exclude=.git -ruN eco32/disk/tools/wrpart/Makefile eco32/disk/tools/wrpart/Makefile
--- eco32/disk/tools/wrpart/Makefile 2025-01-28 01:29:19
+++ eco32/disk/tools/wrpart/Makefile 2025-01-28 00:30:00
@@ -5,8 +5,8 @@
BUILD = ../../../build
CC = gcc
-CFLAGS = -g -Wall
-LDFLAGS = -g
+CFLAGS = -g -Wall -I/opt/homebrew/opt/util-linux/include
+LDFLAGS = -g -L/opt/homebrew/opt/util-linux/lib
LDLIBS = -luuid -lm
SRCS = wrpart.c gpt.c
diff --color --exclude=.git -ruN eco32/sim/Makefile eco32/sim/Makefile
--- eco32/sim/Makefile 2025-01-28 01:29:19
+++ eco32/sim/Makefile 2025-01-28 00:47:29
@@ -5,8 +5,8 @@
BUILD = ../build
CC = gcc
-CFLAGS = -g -Wall -I./fpu -I./getline -I/usr/X11R7/include
-LDFLAGS = -g -L./getline -L/usr/X11R7/lib -Wl,-rpath -Wl,/usr/X11R7/lib
+CFLAGS = -g -Wall -I./fpu -I./getline -I/usr/X11/include -I/opt/X11/include
+LDFLAGS = -g -L./getline -L/usr/X11/lib -L/opt/X11/lib -Wl,-rpath -Wl,/usr/X11/lib
LDLIBS = -lgetline -lX11 -lpthread -lm
SRCS = main.c console.c error.c except.c command.c \
diff --color --exclude=.git -ruN eco32/disk/tools/Makefile.run eco32/disk/tools/Makefile.run
--- eco32/disk/tools/Makefile.run 2025-01-27 23:43:46
+++ eco32/disk/tools/Makefile.run 2025-01-28 01:54:01
@@ -47,7 +47,7 @@
all: $(DSK_IMG)
run-sim-dsk: $(DSK_IMG)
- $(BUILD)/bin/sim -i -m 32 -c -s 2 -t 0 -t 1 \
+ $(BUILD)/bin/sim -m 32 -c -s 2 -t 0 -t 1 \
-r $(BUILD)/monitor/simulator/monitor.bin \
-d $(DSK_IMG) -o $(RUN_LOG)