aboutsummaryrefslogtreecommitdiffstats
path: root/ruby-runner.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-08 01:50:39 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-08 01:50:39 +0000
commite15d9d86df98eb015a44b8d274c6a259e4e35f64 (patch)
tree8d992de78ffcc5f35c0b61565a560a66e1551e7b /ruby-runner.c
parent2301054a99b85ad2ede6a53404268f25dc2d5fdc (diff)
downloadruby-e15d9d86df98eb015a44b8d274c6a259e4e35f64.tar.gz
Give the MJIT header path name
Give the whole MJIT header path name by preloaded shared library mjit_build_dir.so, than building the path from a given directory name and the embedded base name. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66280 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ruby-runner.c')
-rw-r--r--ruby-runner.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ruby-runner.c b/ruby-runner.c
index 171f476b45..c991178193 100644
--- a/ruby-runner.c
+++ b/ruby-runner.c
@@ -10,7 +10,7 @@
#include "ruby/config.h"
#ifdef MAKE_MJIT_BUILD_DIR
-const char MJIT_BUILD_DIR[] = BUILDDIR;
+const char MJIT_HEADER[] = BUILDDIR "/" MJIT_MIN_HEADER;
#else
#define STRINGIZE(expr) STRINGIZE0(expr)