Skip to content

Commit f1735ce

Browse files
committed
make sure jemalloc valgrind support is enabled
This requires pointing it at the valgrind headers we carry in-tree.
1 parent 69b321c commit f1735ce

File tree

6 files changed

+5
-4
lines changed

6 files changed

+5
-4
lines changed

.gitattributes

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
src/etc/pkg/rust-logo.ico binary
88
src/etc/pkg/rust-logo.png binary
99
src/rt/msvc/* -whitespace
10-
src/rt/vg/* -whitespace
10+
src/rt/valgrind/* -whitespace

mk/rt.mk

+1
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,7 @@ $$(JEMALLOC_LIB_$(1)): $$(JEMALLOC_DEPS) $$(MKFILE_DEPS)
260260
CC="$$(CC_$(1))" \
261261
AR="$$(AR_$(1))" \
262262
RANLIB="$$(AR_$(1)) s" \
263+
CPPFLAGS="-I $(S)src/rt/" \
263264
EXTRA_CFLAGS="$$(CFG_CFLAGS_$(1))"
264265
$$(Q)$$(MAKE) -C "$$(JEMALLOC_BUILD_DIR_$(1))" build_lib_static
265266
$$(Q)cp $$(JEMALLOC_BUILD_DIR_$(1))/lib/$$(JEMALLOC_REAL_NAME_$(1)) $$(JEMALLOC_LIB_$(1))

mk/tests.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,8 @@ ALL_HS := $(wildcard $(S)src/rt/*.h \
227227
$(S)src/rt/*/*.h \
228228
$(S)src/rt/*/*/*.h \
229229
$(S)src/rustllvm/*.h)
230-
ALL_HS := $(filter-out $(S)src/rt/vg/valgrind.h \
231-
$(S)src/rt/vg/memcheck.h \
230+
ALL_HS := $(filter-out $(S)src/rt/valgrind/valgrind.h \
231+
$(S)src/rt/valgrind/memcheck.h \
232232
$(S)src/rt/msvc/typeof.h \
233233
$(S)src/rt/msvc/stdint.h \
234234
$(S)src/rt/msvc/inttypes.h \

src/rt/rust_builtin.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
/* Foreign builtins. */
1212

13-
#include "vg/valgrind.h"
13+
#include "valgrind/valgrind.h"
1414

1515
#include <stdint.h>
1616
#include <time.h>
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)