mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 16:33:28 +00:00
Add --enable-docs. Patch by NAKAMURA Takumi.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118918 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
52668c9a30
commit
9d9ae9fb59
4
Makefile
4
Makefile
@ -47,6 +47,10 @@ ifneq ($(ENABLE_SHARED),1)
|
|||||||
DIRS := $(filter-out tools/llvm-shlib, $(DIRS))
|
DIRS := $(filter-out tools/llvm-shlib, $(DIRS))
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifneq ($(ENABLE_DOCS),1)
|
||||||
|
DIRS := $(filter-out docs, $(DIRS))
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(MAKECMDGOALS),libs-only)
|
ifeq ($(MAKECMDGOALS),libs-only)
|
||||||
DIRS := $(filter-out tools runtime docs, $(DIRS))
|
DIRS := $(filter-out tools runtime docs, $(DIRS))
|
||||||
OPTIONAL_DIRS :=
|
OPTIONAL_DIRS :=
|
||||||
|
@ -264,6 +264,9 @@ OPTIMIZE_OPTION := @OPTIMIZE_OPTION@
|
|||||||
# information to allow gprof to be used to get execution frequencies.
|
# information to allow gprof to be used to get execution frequencies.
|
||||||
#ENABLE_PROFILING = 1
|
#ENABLE_PROFILING = 1
|
||||||
|
|
||||||
|
# When ENABLE_DOCS is disabled, docs/ will not be built.
|
||||||
|
ENABLE_DOCS = @ENABLE_DOCS@
|
||||||
|
|
||||||
# When ENABLE_DOXYGEN is enabled, the doxygen documentation will be built
|
# When ENABLE_DOXYGEN is enabled, the doxygen documentation will be built
|
||||||
ENABLE_DOXYGEN = @ENABLE_DOXYGEN@
|
ENABLE_DOXYGEN = @ENABLE_DOXYGEN@
|
||||||
|
|
||||||
|
@ -493,6 +493,18 @@ else
|
|||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
dnl Allow enablement of building and installing docs
|
||||||
|
AC_ARG_ENABLE(docs,
|
||||||
|
AS_HELP_STRING([--enable-docs],
|
||||||
|
[Build documents (default is YES)]),,
|
||||||
|
enableval=default)
|
||||||
|
case "$enableval" in
|
||||||
|
yes) AC_SUBST(ENABLE_DOCS,[1]) ;;
|
||||||
|
no) AC_SUBST(ENABLE_DOCS,[0]) ;;
|
||||||
|
default) AC_SUBST(ENABLE_DOCS,[1]) ;;
|
||||||
|
*) AC_MSG_ERROR([Invalid setting for --enable-docs. Use "yes" or "no"]) ;;
|
||||||
|
esac
|
||||||
|
|
||||||
dnl Allow enablement of doxygen generated documentation
|
dnl Allow enablement of doxygen generated documentation
|
||||||
AC_ARG_ENABLE(doxygen,
|
AC_ARG_ENABLE(doxygen,
|
||||||
AS_HELP_STRING([--enable-doxygen],
|
AS_HELP_STRING([--enable-doxygen],
|
||||||
|
30
configure
vendored
30
configure
vendored
@ -688,6 +688,7 @@ DEBUG_RUNTIME
|
|||||||
DEBUG_SYMBOLS
|
DEBUG_SYMBOLS
|
||||||
JIT
|
JIT
|
||||||
TARGET_HAS_JIT
|
TARGET_HAS_JIT
|
||||||
|
ENABLE_DOCS
|
||||||
ENABLE_DOXYGEN
|
ENABLE_DOXYGEN
|
||||||
ENABLE_THREADS
|
ENABLE_THREADS
|
||||||
ENABLE_PIC
|
ENABLE_PIC
|
||||||
@ -1411,6 +1412,7 @@ Optional Features:
|
|||||||
--enable-debug-symbols Build compiler with debug symbols (default is NO if
|
--enable-debug-symbols Build compiler with debug symbols (default is NO if
|
||||||
optimization is on and YES if it's off)
|
optimization is on and YES if it's off)
|
||||||
--enable-jit Enable Just In Time Compiling (default is YES)
|
--enable-jit Enable Just In Time Compiling (default is YES)
|
||||||
|
--enable-docs Build documents (default is YES)
|
||||||
--enable-doxygen Build doxygen documentation (default is NO)
|
--enable-doxygen Build doxygen documentation (default is NO)
|
||||||
--enable-threads Use threads if available (default is YES)
|
--enable-threads Use threads if available (default is YES)
|
||||||
--enable-pic Build LLVM with Position Independent Code (default
|
--enable-pic Build LLVM with Position Independent Code (default
|
||||||
@ -4871,6 +4873,25 @@ else
|
|||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Check whether --enable-docs was given.
|
||||||
|
if test "${enable_docs+set}" = set; then
|
||||||
|
enableval=$enable_docs;
|
||||||
|
else
|
||||||
|
enableval=default
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$enableval" in
|
||||||
|
yes) ENABLE_DOCS=1
|
||||||
|
;;
|
||||||
|
no) ENABLE_DOCS=0
|
||||||
|
;;
|
||||||
|
default) ENABLE_DOCS=1
|
||||||
|
;;
|
||||||
|
*) { { echo "$as_me:$LINENO: error: Invalid setting for --enable-docs. Use \"yes\" or \"no\"" >&5
|
||||||
|
echo "$as_me: error: Invalid setting for --enable-docs. Use \"yes\" or \"no\"" >&2;}
|
||||||
|
{ (exit 1); exit 1; }; } ;;
|
||||||
|
esac
|
||||||
|
|
||||||
# Check whether --enable-doxygen was given.
|
# Check whether --enable-doxygen was given.
|
||||||
if test "${enable_doxygen+set}" = set; then
|
if test "${enable_doxygen+set}" = set; then
|
||||||
enableval=$enable_doxygen;
|
enableval=$enable_doxygen;
|
||||||
@ -11501,7 +11522,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 11504 "configure"
|
#line 11525 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -21697,6 +21718,7 @@ DEBUG_RUNTIME!$DEBUG_RUNTIME$ac_delim
|
|||||||
DEBUG_SYMBOLS!$DEBUG_SYMBOLS$ac_delim
|
DEBUG_SYMBOLS!$DEBUG_SYMBOLS$ac_delim
|
||||||
JIT!$JIT$ac_delim
|
JIT!$JIT$ac_delim
|
||||||
TARGET_HAS_JIT!$TARGET_HAS_JIT$ac_delim
|
TARGET_HAS_JIT!$TARGET_HAS_JIT$ac_delim
|
||||||
|
ENABLE_DOCS!$ENABLE_DOCS$ac_delim
|
||||||
ENABLE_DOXYGEN!$ENABLE_DOXYGEN$ac_delim
|
ENABLE_DOXYGEN!$ENABLE_DOXYGEN$ac_delim
|
||||||
ENABLE_THREADS!$ENABLE_THREADS$ac_delim
|
ENABLE_THREADS!$ENABLE_THREADS$ac_delim
|
||||||
ENABLE_PIC!$ENABLE_PIC$ac_delim
|
ENABLE_PIC!$ENABLE_PIC$ac_delim
|
||||||
@ -21707,7 +21729,6 @@ LLVM_ENUM_TARGETS!$LLVM_ENUM_TARGETS$ac_delim
|
|||||||
LLVM_ENUM_ASM_PRINTERS!$LLVM_ENUM_ASM_PRINTERS$ac_delim
|
LLVM_ENUM_ASM_PRINTERS!$LLVM_ENUM_ASM_PRINTERS$ac_delim
|
||||||
LLVM_ENUM_ASM_PARSERS!$LLVM_ENUM_ASM_PARSERS$ac_delim
|
LLVM_ENUM_ASM_PARSERS!$LLVM_ENUM_ASM_PARSERS$ac_delim
|
||||||
LLVM_ENUM_DISASSEMBLERS!$LLVM_ENUM_DISASSEMBLERS$ac_delim
|
LLVM_ENUM_DISASSEMBLERS!$LLVM_ENUM_DISASSEMBLERS$ac_delim
|
||||||
ENABLE_CBE_PRINTF_A!$ENABLE_CBE_PRINTF_A$ac_delim
|
|
||||||
_ACEOF
|
_ACEOF
|
||||||
|
|
||||||
if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
|
if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
|
||||||
@ -21749,6 +21770,7 @@ _ACEOF
|
|||||||
ac_delim='%!_!# '
|
ac_delim='%!_!# '
|
||||||
for ac_last_try in false false false false false :; do
|
for ac_last_try in false false false false false :; do
|
||||||
cat >conf$$subs.sed <<_ACEOF
|
cat >conf$$subs.sed <<_ACEOF
|
||||||
|
ENABLE_CBE_PRINTF_A!$ENABLE_CBE_PRINTF_A$ac_delim
|
||||||
CLANGPATH!$CLANGPATH$ac_delim
|
CLANGPATH!$CLANGPATH$ac_delim
|
||||||
CLANGXXPATH!$CLANGXXPATH$ac_delim
|
CLANGXXPATH!$CLANGXXPATH$ac_delim
|
||||||
ENABLE_BUILT_CLANG!$ENABLE_BUILT_CLANG$ac_delim
|
ENABLE_BUILT_CLANG!$ENABLE_BUILT_CLANG$ac_delim
|
||||||
@ -21845,7 +21867,6 @@ ALL_BINDINGS!$ALL_BINDINGS$ac_delim
|
|||||||
OCAML_LIBDIR!$OCAML_LIBDIR$ac_delim
|
OCAML_LIBDIR!$OCAML_LIBDIR$ac_delim
|
||||||
ENABLE_VISIBILITY_INLINES_HIDDEN!$ENABLE_VISIBILITY_INLINES_HIDDEN$ac_delim
|
ENABLE_VISIBILITY_INLINES_HIDDEN!$ENABLE_VISIBILITY_INLINES_HIDDEN$ac_delim
|
||||||
RPATH!$RPATH$ac_delim
|
RPATH!$RPATH$ac_delim
|
||||||
RDYNAMIC!$RDYNAMIC$ac_delim
|
|
||||||
_ACEOF
|
_ACEOF
|
||||||
|
|
||||||
if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
|
if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
|
||||||
@ -21887,11 +21908,12 @@ _ACEOF
|
|||||||
ac_delim='%!_!# '
|
ac_delim='%!_!# '
|
||||||
for ac_last_try in false false false false false :; do
|
for ac_last_try in false false false false false :; do
|
||||||
cat >conf$$subs.sed <<_ACEOF
|
cat >conf$$subs.sed <<_ACEOF
|
||||||
|
RDYNAMIC!$RDYNAMIC$ac_delim
|
||||||
LIBOBJS!$LIBOBJS$ac_delim
|
LIBOBJS!$LIBOBJS$ac_delim
|
||||||
LTLIBOBJS!$LTLIBOBJS$ac_delim
|
LTLIBOBJS!$LTLIBOBJS$ac_delim
|
||||||
_ACEOF
|
_ACEOF
|
||||||
|
|
||||||
if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 2; then
|
if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 3; then
|
||||||
break
|
break
|
||||||
elif $ac_last_try; then
|
elif $ac_last_try; then
|
||||||
{ { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
|
{ { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
|
||||||
|
Loading…
x
Reference in New Issue
Block a user