summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSébastien Hinderer <Sebastien.Hinderer@inria.fr>2022-09-11 17:04:21 +0200
committerSébastien Hinderer <Sebastien.Hinderer@inria.fr>2022-09-11 17:04:21 +0200
commit715ddc9ffca0acee8a12b965593fbcb403642423 (patch)
tree5eda5134ee184ae65e4c9eae0595d81cbadc8a98 /tools
parent749e50d736e829ce81b768e5e157eecca73a2c59 (diff)
downloadocaml-715ddc9ffca0acee8a12b965593fbcb403642423.tar.gz
Stop passing -safe-string when building the compiler and in the testsuite
PR #1252 has made the safe-string mode the default so passing -safe-string explicitly has become useless since this PR has been merged, even more useless since support for mutable strings was removed in OCaml 5.0.
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 8325e26dc2..85f9348b11 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -41,7 +41,7 @@ DIRS = $(addprefix $(ROOTDIR)/,utils parsing typing bytecomp \
file_formats lambda)
INCLUDES = $(addprefix -I ,$(DIRS))
COMPFLAGS = -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence \
--warn-error +A -principal -safe-string -strict-formats -bin-annot $(INCLUDES)
+-warn-error +A -principal -strict-formats -bin-annot $(INCLUDES)
LINKFLAGS = $(INCLUDES)
VPATH := $(filter-out -I,$(INCLUDES))