You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I build sre from my laptop, it crash when load rule file.
I checked it and found the action file load earlier than base file, which will cause crash here.
When I build sre from my laptop, it crash when load rule file.
I checked it and found the action file load earlier than base file, which will cause crash here.
speech-rule-engine/ts/rule_engine/speech_rule_engine.ts
Lines 820 to 826 in cc46b71
I found
lib/mathmaps
was createad by makefilesspeech-rule-engine/Makefile
Lines 71 to 86 in cc46b71
it should be noticed that
for in
loop in bash not guarantee alphabetical order, it depends on locale.in my case, when
LANG
was set tozh_CN.UTF-8
, the merged json file order will cause crash.and when set
LC_COLLATE
toC
, it will has same order with released file.add this env to makefile will help.
The text was updated successfully, but these errors were encountered: