Skip to content

Commit 75cf691

Browse files
committed
Make jl_write_coverage_data dllexported again
1 parent 8e14aa3 commit 75cf691

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/coverage.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ static void write_lcov_data(logdata_t &logData, const std::string &outfile)
192192
outf.close();
193193
}
194194

195-
extern "C" void jl_write_coverage_data(const char *output)
195+
extern "C" JL_DLLEXPORT void jl_write_coverage_data(const char *output)
196196
{
197197
if (output) {
198198
StringRef output_pattern(output);

src/julia_internal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1632,7 +1632,7 @@ JL_DLLEXPORT enum jl_memory_order jl_get_atomic_order_checked(jl_sym_t *order, c
16321632

16331633
struct _jl_image_fptrs_t;
16341634

1635-
void jl_write_coverage_data(const char*);
1635+
JL_DLLEXPORT void jl_write_coverage_data(const char*);
16361636
void jl_write_malloc_log(void);
16371637

16381638
#if jl_has_builtin(__builtin_unreachable) || defined(_COMPILER_GCC_) || defined(_COMPILER_INTEL_)

0 commit comments

Comments
 (0)