mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-11-16 12:34:43 +00:00
Compare commits
1 Commits
efbd9add96
...
users/jema
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
39dea61079 |
@@ -143,10 +143,12 @@ MAKEINFO_CMD = $(MAKEINFO) $(MAKEINFOFLAGS) $(MAKEINFO_EXTRA_FLAGS)
|
||||
MAKEHTML = $(MAKEINFO_CMD) --html
|
||||
MAKEHTMLFLAGS =
|
||||
|
||||
LIBTOOL = @LIBTOOL@
|
||||
|
||||
# Set this up with gcc if you have gnu ld and the loader will print out
|
||||
# line numbers for undefined references.
|
||||
#CC_LD = g++ -static
|
||||
CC_LD = $(CXX) $(CXX_DIALECT)
|
||||
CC_LD = $(LIBTOOL) --mode=link $(CXX) $(CXX_DIALECT)
|
||||
|
||||
# Where is our "include" directory? Typically $(srcdir)/../include.
|
||||
# This is essentially the header file directory for the library
|
||||
@@ -163,7 +165,7 @@ CTF_DEPS = @CTF_DEPS@
|
||||
|
||||
# Where is the BFD library? Typically in ../bfd.
|
||||
BFD_DIR = ../bfd
|
||||
BFD = $(BFD_DIR)/libbfd.a
|
||||
BFD = $(BFD_DIR)/libbfd.la
|
||||
BFD_SRC = $(srcdir)/$(BFD_DIR)
|
||||
BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC)
|
||||
|
||||
@@ -504,7 +506,7 @@ SUBDIR_TARGET_OBS = $(patsubst %.c,%.o,$(SUBDIR_TARGET_SRCS))
|
||||
# disassemblers?
|
||||
OPCODES_DIR = ../opcodes
|
||||
OPCODES_SRC = $(srcdir)/$(OPCODES_DIR)
|
||||
OPCODES = $(OPCODES_DIR)/libopcodes.a
|
||||
OPCODES = $(OPCODES_DIR)/libopcodes.la
|
||||
# Where are the other opcode tables which only have header file
|
||||
# versions?
|
||||
OP_INCLUDE = $(INCLUDE_DIR)/opcode
|
||||
@@ -2017,7 +2019,8 @@ install-only: $(CONFIG_INSTALL)
|
||||
true ; \
|
||||
fi ; \
|
||||
$(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
|
||||
$(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) gdb$(EXEEXT) \
|
||||
$(LIBTOOL) --mode=install $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) \
|
||||
gdb$(EXEEXT) \
|
||||
$(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
|
||||
$(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(includedir)/gdb ; \
|
||||
$(INSTALL_DATA) jit-reader.h $(DESTDIR)$(includedir)/gdb/jit-reader.h
|
||||
@@ -2529,7 +2532,8 @@ install-gdbtk:
|
||||
true ; \
|
||||
fi ; \
|
||||
$(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir); \
|
||||
$(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) insight$(EXEEXT) \
|
||||
$(LIBTOOL) --mode=install $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) \
|
||||
insight$(EXEEXT) \
|
||||
$(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
|
||||
$(SHELL) $(srcdir)/../mkinstalldirs \
|
||||
$(DESTDIR)$(GDBTK_LIBRARY) ; \
|
||||
|
||||
5
gdb/aclocal.m4
vendored
5
gdb/aclocal.m4
vendored
@@ -212,4 +212,9 @@ m4_include([../config/override.m4])
|
||||
m4_include([../config/pkg.m4])
|
||||
m4_include([../config/plugins.m4])
|
||||
m4_include([../config/tcl.m4])
|
||||
m4_include([../libtool.m4])
|
||||
m4_include([../ltoptions.m4])
|
||||
m4_include([../ltsugar.m4])
|
||||
m4_include([../ltversion.m4])
|
||||
m4_include([../lt~obsolete.m4])
|
||||
m4_include([acinclude.m4])
|
||||
|
||||
@@ -614,6 +614,10 @@
|
||||
moved. */
|
||||
#undef JIT_READER_DIR_RELOCATABLE
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
#undef LT_OBJDIR
|
||||
|
||||
/* Name of this package. */
|
||||
#undef PACKAGE
|
||||
|
||||
|
||||
11064
gdb/configure
vendored
11064
gdb/configure
vendored
File diff suppressed because it is too large
Load Diff
@@ -19,7 +19,7 @@ dnl along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
dnl Process this file with autoconf to produce a configure script.
|
||||
|
||||
AC_INIT
|
||||
AC_CONFIG_MACRO_DIRS([../config])
|
||||
AC_CONFIG_MACRO_DIRS([.. ../config])
|
||||
AC_CONFIG_SRCDIR([main.c])
|
||||
AC_CONFIG_HEADERS(config.h:config.in, [echo > stamp-h])
|
||||
AM_MAINTAINER_MODE
|
||||
@@ -46,6 +46,10 @@ ACX_NONCANONICAL_TARGET
|
||||
|
||||
AC_ARG_PROGRAM
|
||||
|
||||
# We require libtool to link with the in-tree libtool libraries
|
||||
# the proper way.
|
||||
LT_INIT
|
||||
|
||||
# We require a C++11 compiler. Check if one is available, and if
|
||||
# necessary, set CXX_DIALECT to some -std=xxx switch.
|
||||
AX_CXX_COMPILE_STDCXX(11, , mandatory)
|
||||
@@ -2092,7 +2096,7 @@ AC_ARG_ENABLE([libbacktrace],
|
||||
|
||||
if test "${enable_libbacktrace}" = "yes"; then
|
||||
LIBBACKTRACE_INC="-I$srcdir/../libbacktrace/ -I../libbacktrace/"
|
||||
LIBBACKTRACE_LIB=../libbacktrace/.libs/libbacktrace.a
|
||||
LIBBACKTRACE_LIB=../libbacktrace/libbacktrace.la
|
||||
AC_DEFINE(HAVE_LIBBACKTRACE, 1, [Define if libbacktrace is being used.])
|
||||
else
|
||||
LIBBACKTRACE_INC=
|
||||
@@ -2151,15 +2155,10 @@ AC_ARG_WITH(xxhash,
|
||||
[], [with_xxhash=auto])
|
||||
|
||||
GCC_ENABLE([libctf], [yes], [], [Handle .ctf type-info sections])
|
||||
if test x${enable_static} = xno; then
|
||||
LIBCTF="-Wl,--rpath,../libctf/.libs ../libctf/.libs/libctf.so"
|
||||
CTF_DEPS="../libctf/.libs/libctf.so"
|
||||
else
|
||||
LIBCTF="../libctf/.libs/libctf.a"
|
||||
CTF_DEPS="$LIBCTF"
|
||||
fi
|
||||
if test "${enable_libctf}" = yes; then
|
||||
AC_DEFINE(ENABLE_LIBCTF, 1, [Handle .ctf type-info sections])
|
||||
LIBCTF="../libctf/libctf.la"
|
||||
CTF_DEPS="../libctf/libctf.la"
|
||||
else
|
||||
LIBCTF=
|
||||
CTF_DEPS=
|
||||
|
||||
Reference in New Issue
Block a user