Skip to content

Commit a44fc9d

Browse files
committed
flambda-backend: more runtime/ -> runtime4/
1 parent 95110bc commit a44fc9d

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

manual/src/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ROOTDIR = ../..
22
include $(ROOTDIR)/Makefile.common
33

4-
TEXQUOTE = $(ROOTDIR)/runtime/ocamlrun ../tools/texquote2
4+
TEXQUOTE = $(ROOTDIR)/runtime4/ocamlrun ../tools/texquote2
55

66
DIRS = infoman texstuff textman
77

manual/src/library/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ROOTDIR = ../../..
22
include $(ROOTDIR)/Makefile.common
33

4-
TEXQUOTE = $(ROOTDIR)/runtime/ocamlrun ../../tools/texquote2
4+
TEXQUOTE = $(ROOTDIR)/runtime4/ocamlrun ../../tools/texquote2
55
LD_PATH = $(ROOTDIR)/otherlibs/str $(ROOTDIR)/otherlibs/unix
66
CAMLLATEX = $(OCAMLRUN) $(addprefix -I ,$(LD_PATH)) \
77
$(ROOTDIR)/tools/ocamltex -repo-root $(ROOTDIR) -n 80 -v false

runtime4/arm.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ caml_hot__code_end:
126126
#define DOMAIN_STATE(c_type, name) \
127127
.equ domain_field_caml_##name, domain_curr_field ; \
128128
.set domain_curr_field, domain_curr_field + 1
129-
#include "../runtime/caml/domain_state.tbl"
129+
#include "../runtime4/caml/domain_state.tbl"
130130
#undef DOMAIN_STATE
131131

132132
#define Caml_state(var) [domain_state_ptr, 8*domain_field_caml_##var]

testsuite/tests/lib-dynlink-csharp/main.ml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ program = "main_obj.${objext}"
3434
all_modules = "dynlink.cma entry.c main.ml"
3535
****** script
3636
script = "${mkdll} -maindll -o main.dll main_obj.${objext} entry.${objext} \
37-
${ocamlsrcdir}/runtime/libcamlrun.${libext} ${bytecc_libs}"
37+
${ocamlsrcdir}/runtime4/libcamlrun.${libext} ${bytecc_libs}"
3838
******* script
3939
script = "${csharp_cmd}"
4040
******** run
@@ -70,7 +70,7 @@ program = "main_obj.${objext}"
7070
all_modules = "dynlink.cmxa entry.c main.ml"
7171
****** script
7272
script = "${mkdll} -maindll -o main.dll main_obj.${objext} entry.${objext} \
73-
${ocamlsrcdir}/runtime/libasmrun.${libext} ${nativecc_libs}"
73+
${ocamlsrcdir}/runtime4/libasmrun.${libext} ${nativecc_libs}"
7474
******* script
7575
script = "${csharp_cmd}"
7676
******** run

testsuite/tests/lib-unix/unix-execvpe/has-execvpe.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# It makes sense to run the tests only if execvpe is nt implemented.
66
# If it is implemented, the test is skipped.
77

8-
if grep -q "#define HAS_EXECVPE" ${ocamlsrcdir}/runtime/caml/s.h; then
8+
if grep -q "#define HAS_EXECVPE" ${ocamlsrcdir}/runtime4/caml/s.h; then
99
exit ${TEST_SKIP};
1010
fi
1111
exit ${TEST_PASS}

testsuite/tests/output-complete-obj/github9344.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use_runtime = "false"
44
55
* setup-ocamlc.byte-build-env
66
** ocamlc.byte
7-
flags = "-w -a -output-complete-exe -ccopt -I${ocamlsrcdir}/runtime"
7+
flags = "-w -a -output-complete-exe -ccopt -I${ocamlsrcdir}/runtime4"
88
program = "github9344"
99
*** run
1010
program = "sh ${test_source_directory}/github9344.sh"

testsuite/tests/output-complete-obj/test.ml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ readonly_files = "test.ml_stub.c"
77
flags = "-w -a -output-complete-obj"
88
program = "test.ml.bc.${objext}"
99
*** script
10-
script = "${mkexe} -I${ocamlsrcdir}/runtime -o test.ml_bc_stub.exe \
10+
script = "${mkexe} -I${ocamlsrcdir}/runtime4 -o test.ml_bc_stub.exe \
1111
test.ml.bc.${objext} ${nativecc_libs} test.ml_stub.c"
1212
output = "${compiler_output}"
1313
**** run
@@ -19,7 +19,7 @@ stderr = "program-output"
1919
flags = "-w -a -output-complete-obj"
2020
program = "test.ml.exe.${objext}"
2121
*** script
22-
script = "${mkexe} -I${ocamlsrcdir}/runtime -o test.ml_stub.exe \
22+
script = "${mkexe} -I${ocamlsrcdir}/runtime4 -o test.ml_stub.exe \
2323
test.ml.exe.${objext} ${bytecc_libs} test.ml_stub.c"
2424
output = "${compiler_output}"
2525
**** run

testsuite/tests/output-complete-obj/test2.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ unset FOO
88
include unix
99
** setup-ocamlc.byte-build-env
1010
*** ocamlc.byte
11-
flags = "-w -a -output-complete-exe puts.c -ccopt -I${ocamlsrcdir}/runtime"
11+
flags = "-w -a -output-complete-exe puts.c -ccopt -I${ocamlsrcdir}/runtime4"
1212
program = "test2"
1313
**** run
1414
program = "./test2"

testsuite/tests/runtime-naked-pointers/runtest.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
if grep -q "#define NAKED_POINTERS_CHECKER" ${ocamlsrcdir}/runtime/caml/m.h \
3+
if grep -q "#define NAKED_POINTERS_CHECKER" ${ocamlsrcdir}/runtime4/caml/m.h \
44
&& (echo ${program} | grep -q '\.opt')
55
then
66
(${program} > ${output}) 2>&1 | grep -q '^Out-of-heap '

0 commit comments

Comments
 (0)