RJIT: Remove macros inherited from MJIT but no longer used
This commit is contained in:
parent
0d7e847153
commit
f339937abb
Notes:
git
2023-08-16 23:34:11 +00:00
24
configure.ac
24
configure.ac
@ -420,21 +420,6 @@ AC_SUBST(OUTFLAG)
|
|||||||
AC_SUBST(COUTFLAG)
|
AC_SUBST(COUTFLAG)
|
||||||
AC_SUBST(CSRCFLAG)
|
AC_SUBST(CSRCFLAG)
|
||||||
|
|
||||||
: ${RJIT_CC=$CC}
|
|
||||||
AS_IF([test "x$cross_compiling" = xno], [
|
|
||||||
AC_PATH_PROG([RJIT_CC], ${RJIT_CC})
|
|
||||||
|
|
||||||
# if $CC is in /usr/lib/ccache/$CC, search original $CC (disable ccache)
|
|
||||||
AS_IF([echo $RUBY_DEBUG | grep ci > /dev/null &&
|
|
||||||
echo $RJIT_CC | grep ^/usr/lib/ccache > /dev/null], [
|
|
||||||
PATH=`echo $PATH | sed "s/\/usr\/lib\/ccache://"` RJIT_CC=`which $CC`])
|
|
||||||
|
|
||||||
AS_CASE([$target_os],
|
|
||||||
[*mingw*], [command -v cygpath > /dev/null && RJIT_CC=`cygpath -ma $RJIT_CC`])
|
|
||||||
shift 2
|
|
||||||
RJIT_CC="$RJIT_CC${1+ }$*"
|
|
||||||
])
|
|
||||||
|
|
||||||
AS_CASE(["$build_os"],
|
AS_CASE(["$build_os"],
|
||||||
[darwin1*.*], [
|
[darwin1*.*], [
|
||||||
# Xcode linker warns for deprecated architecture and wrongly
|
# Xcode linker warns for deprecated architecture and wrongly
|
||||||
@ -2960,14 +2945,6 @@ LIBEXT=a
|
|||||||
|
|
||||||
AC_SUBST(DLDFLAGS)dnl
|
AC_SUBST(DLDFLAGS)dnl
|
||||||
AC_SUBST(ARCH_FLAG)dnl
|
AC_SUBST(ARCH_FLAG)dnl
|
||||||
AC_SUBST(RJIT_CC)dnl
|
|
||||||
AS_CASE(["$GCC:$target_os"],
|
|
||||||
[yes:aix*], [rjit_std_cflag="-std=gnu99"],
|
|
||||||
[rjit_std_cflag=])
|
|
||||||
AC_SUBST(RJIT_CFLAGS, [${RJIT_CFLAGS-"-w ${rjit_std_cflag} ${orig_cflags}"}])dnl
|
|
||||||
AC_SUBST(RJIT_OPTFLAGS, [${RJIT_OPTFLAGS-'$(optflags)'}])dnl
|
|
||||||
AC_SUBST(RJIT_DEBUGFLAGS, [${RJIT_DEBUGFLAGS-'$(debugflags)'}])dnl
|
|
||||||
AC_SUBST(RJIT_LDSHARED)dnl
|
|
||||||
|
|
||||||
AC_SUBST(STATIC)dnl
|
AC_SUBST(STATIC)dnl
|
||||||
AC_SUBST(CCDLFLAGS)dnl
|
AC_SUBST(CCDLFLAGS)dnl
|
||||||
@ -4127,7 +4104,6 @@ AS_IF([test "${universal_binary-no}" = yes ], [
|
|||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
|
||||||
: ${RJIT_LDSHARED=`echo "$LDSHARED" | sed ['s|\$(LD)|'"${LD}"'|g;s|\$(CC)|$(RJIT_CC)|g']`}
|
|
||||||
[end]_group
|
[end]_group
|
||||||
|
|
||||||
MAINLIBS="$LIBS"
|
MAINLIBS="$LIBS"
|
||||||
|
@ -14,9 +14,6 @@ override ACTIONS_ENDGROUP = @echo "::endgroup::"
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq ($(filter darwin%,$(target_os)),)
|
ifneq ($(filter darwin%,$(target_os)),)
|
||||||
# Remove debug option not to generate thousands of .dSYM
|
|
||||||
RJIT_DEBUGFLAGS := $(filter-out -g%,$(RJIT_DEBUGFLAGS))
|
|
||||||
|
|
||||||
INSTRUBY_ENV += SDKROOT=
|
INSTRUBY_ENV += SDKROOT=
|
||||||
endif
|
endif
|
||||||
INSTRUBY_ARGS += --gnumake
|
INSTRUBY_ARGS += --gnumake
|
||||||
|
@ -96,12 +96,6 @@ USE_RUBYGEMS = @USE_RUBYGEMS@
|
|||||||
USE_RUBYGEMS_ = $(USE_RUBYGEMS:yes=)
|
USE_RUBYGEMS_ = $(USE_RUBYGEMS:yes=)
|
||||||
CPPFLAGS = @CPPFLAGS@ $(USE_RUBYGEMS_:no=-DDISABLE_RUBYGEMS=1)
|
CPPFLAGS = @CPPFLAGS@ $(USE_RUBYGEMS_:no=-DDISABLE_RUBYGEMS=1)
|
||||||
RJIT_SUPPORT = @RJIT_SUPPORT@
|
RJIT_SUPPORT = @RJIT_SUPPORT@
|
||||||
RJIT_CC = @RJIT_CC@
|
|
||||||
RJIT_CFLAGS = @RJIT_CFLAGS@
|
|
||||||
RJIT_OPTFLAGS = @RJIT_OPTFLAGS@
|
|
||||||
RJIT_DEBUGFLAGS = @RJIT_DEBUGFLAGS@
|
|
||||||
RJIT_LDSHARED = @RJIT_LDSHARED@
|
|
||||||
RJIT_DLDFLAGS = $(XDLDFLAGS)
|
|
||||||
YJIT_SUPPORT=@YJIT_SUPPORT@
|
YJIT_SUPPORT=@YJIT_SUPPORT@
|
||||||
YJIT_LIBS=@YJIT_LIBS@
|
YJIT_LIBS=@YJIT_LIBS@
|
||||||
YJIT_OBJ=@YJIT_OBJ@
|
YJIT_OBJ=@YJIT_OBJ@
|
||||||
|
Loading…
x
Reference in New Issue
Block a user