From 33eebfd30132304244f35407daec37c4ba77a870 Mon Sep 17 00:00:00 2001 From: k0kubun Date: Mon, 3 Dec 2018 12:00:27 +0000 Subject: mjit_worker.c: undefine CC_PATH because we mostly use cc_path now and the comment is obsolete (CC_PATH is now absolute path and the TODO is already resolved). mjit.c: use CC_COMMON_ARGS[0] directly git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66162 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- mjit.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'mjit.c') diff --git a/mjit.c b/mjit.c index 1f9140b7a8..7e3302224c 100644 --- a/mjit.c +++ b/mjit.c @@ -632,15 +632,14 @@ mjit_init(struct mjit_options *opts) if (mjit_opts.max_cache_size < MIN_CACHE_SIZE) mjit_opts.max_cache_size = MIN_CACHE_SIZE; - verbose(2, "MJIT: CC defaults to %s", CC_PATH); - /* Initialize variables for compilation */ #ifdef _MSC_VER pch_status = PCH_SUCCESS; /* has prebuilt precompiled header */ #else pch_status = PCH_NOT_READY; #endif - cc_path = CC_PATH; + cc_path = CC_COMMON_ARGS[0]; + verbose(2, "MJIT: CC defaults to %s", cc_path); tmp_dir = system_tmpdir(); verbose(2, "MJIT: tmp_dir is %s", tmp_dir); -- cgit v1.2.1