File tree 3 files changed +5
-4
lines changed
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -929,7 +929,7 @@ foreach section [boot-base boot-sys boot-mezz] [
929
929
Needs: (select hdr 'needs)
930
930
]
931
931
]
932
- mold /only/flat code
932
+ mold /only code
933
933
)
934
934
]
935
935
][
@@ -954,6 +954,7 @@ foreach section [boot-base boot-sys boot-mezz] [
954
954
boot-protocols: make block! 20
955
955
foreach file first mezz-files [
956
956
code: load-file/header file
957
+ ? code
957
958
hdr: to block! take code
958
959
either all [
959
960
;- if protocol exports some function, import must be used so
@@ -979,7 +980,7 @@ foreach file first mezz-files [
979
980
Needs: (select hdr 'needs)
980
981
]
981
982
]
982
- mold /only/flat code
983
+ mold /only code
983
984
)
984
985
]
985
986
][
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ emit-file: func [
139
139
]
140
140
141
141
emit "#ifdef INCLUDE_EXT_DATA^/ "
142
- data: append trim/head mold /only/flat source newline
142
+ data: append trim/head mold /only source newline
143
143
append data to-char 0 ; null terminator may be required
144
144
emit ["const unsigned char RX_" name "[] = {^/ " to-cstr data "^/ };^/^/ " ]
145
145
emit "#endif^/ "
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ write-c-file: func [
46
46
;print "writing C code..."
47
47
emit-head "Host custom init code" c-file
48
48
49
- data: mold /flat/ only/all code
49
+ data: mold /only/all code
50
50
51
51
append data newline ; BUG? why does MOLD not provide it?
52
52
You can’t perform that action at this time.
0 commit comments