File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -98,10 +98,10 @@ jobs:
98
98
cp ../../capstone/include/capstone/*.h ../../include/capstone/
99
99
100
100
# try compiling all generated code
101
- gcc -DRISCV_OP_MEM_RUNTIME=1 \ `# RISCV_OP_MEM_RUNTIME defined in the modified riscv.h, defined here for simplicity`
102
- -I../../capstone/include \ `# include directory for <...> includes in SStream.c`
103
- test_main.c ../../capstone/SStream.c \ `# the generated code and SStream.c`
104
- || { \ `# else`
101
+ gcc -DRISCV_OP_MEM_RUNTIME=1 \ `RISCV_OP_MEM_RUNTIME defined in the modified riscv.h, defined here for simplicity`
102
+ -I../../capstone/include \ `include directory for <...> includes in SStream.c`
103
+ test_main.c ../../capstone/SStream.c \ `the generated code and SStream.c`
104
+ || { \ `else`
105
105
echo "Failure: Trying to compile the tool-generated C code failed."; \
106
106
exit 1; \
107
107
}
You can’t perform that action at this time.
0 commit comments