File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -184,11 +184,13 @@ defmodule Mix.Tasks.Atomvm.Check do
184
184
missing = MapSet . difference ( calls_set , avail_funcs )
185
185
186
186
if MapSet . size ( missing ) != 0 do
187
- IO . puts ( "error : following modules or functions are not available on AtomVM:" )
187
+ IO . puts ( "Warning : following modules or functions are not available on AtomVM:" )
188
188
print_list ( missing )
189
189
IO . puts ( "" )
190
+ IO . puts ( "(Using them may not be supported; make sure ExAtomVM is fully updated.)" )
191
+ IO . puts ( "" )
190
192
191
- :error
193
+ :ok
192
194
else
193
195
:ok
194
196
end
@@ -215,11 +217,13 @@ defmodule Mix.Tasks.Atomvm.Check do
215
217
""" )
216
218
end
217
219
218
- IO . puts ( "error : following missing instructions are used:" )
220
+ IO . puts ( "Warning : following missing instructions are used:" )
219
221
print_list ( missing_instructions )
220
222
IO . puts ( "" )
223
+ IO . puts ( "(Using them may not be supported; make sure ExAtomVM is fully updated.)" )
224
+ IO . puts ( "" )
221
225
222
- :error
226
+ :ok
223
227
else
224
228
:ok
225
229
end
You can’t perform that action at this time.
0 commit comments