Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
3c809ba4
Commit
3c809ba4
authored
Sep 03, 2000
by
Anthony Green
Committed by
Anthony Green
Sep 03, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Configure changes required for zlib.
From-SVN: r36122
parent
e093c992
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
29 additions
and
5 deletions
+29
-5
ChangeLog
+7
-0
Makefile.in
+4
-2
configure.in
+1
-1
gcc/configure
+0
-0
gcc/configure.in
+11
-0
gcc/java/Makefile.in
+6
-2
No files found.
ChangeLog
View file @
3c809ba4
2000-09-02 Anthony Green <green@cygnus.com>
* Makefile.in (all-gcc): Depend on all-zlib.
(CLEAN_MODULES): Add clean-zlib.
(ALL_MODULES): Add all-zlib.
* configure.in (host_libs): Add zlib.
2000-09-02 Alexandre Oliva <aoliva@redhat.com>, DJ Delorie <dj@redhat.com>
* configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian
...
...
Makefile.in
View file @
3c809ba4
...
...
@@ -527,6 +527,7 @@ ALL_MODULES = \
all-uudecode
\
all-wdiff
\
all-zip
\
all-zlib
\
$(EXTRA_TARGET_HOST_ALL_MODULES)
# This is a list of the check targets for all of the modules which are
...
...
@@ -874,7 +875,8 @@ CLEAN_MODULES = \
clean-time
\
clean-uudecode
\
clean-wdiff
\
clean-zip
clean-zip
\
clean-zlib
# All of the target modules that can be cleaned
CLEAN_TARGET_MODULES
=
\
...
...
@@ -1563,7 +1565,7 @@ all-gas: all-libiberty all-opcodes all-bfd all-intl
all-gash
:
all-tcl
all-gawk
:
ALL_GCC
=
all-gcc
all-gcc
:
all-bison all-byacc all-binutils all-gas all-ld
all-gcc
:
all-bison all-byacc all-binutils all-gas all-ld
all-zlib
all-bootstrap
:
all-libiberty all-bison all-byacc all-binutils all-gas all-ld
GDB_TK
=
all-tk all-tcl all-itcl all-tix all-libgui
all-gdb
:
all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-bison all-byacc all-sim $(gdbnlmrequirements) $(GDB_TK)
...
...
configure.in
View file @
3c809ba4
...
...
@@ -41,7 +41,7 @@
# these libraries are used by various programs built for the host environment
#
host_libs
=
"intl mmalloc libiberty opcodes bfd readline gash db tcl tk tcl8.1 tk8.1 tclX itcl tix libgui"
host_libs
=
"intl mmalloc libiberty opcodes bfd readline gash db tcl tk tcl8.1 tk8.1 tclX itcl tix libgui
zlib
"
if
[
"
${
enable_gdbgui
}
"
=
"yes"
]
;
then
host_libs
=
"
${
host_libs
}
libgui"
...
...
gcc/configure
View file @
3c809ba4
This diff is collapsed.
Click to expand it.
gcc/configure.in
View file @
3c809ba4
...
...
@@ -4785,6 +4785,17 @@ fi])
AC_SUBST(GGC)
echo "Using $GGC for garbage collection."
# Use the system's zlib library.
zlibdir=-L../../zlib
zlibinc="-I\$(srcdir)/../../zlib"
AC_ARG_WITH(system-zlib,
[ --with-system-zlib use installed libz],
zlibdir=
zlibinc=
)
AC_SUBST(zlibdir)
AC_SUBST(zlibinc)
# Build a new-abi (c++) system
AC_ARG_ENABLE(new-gxx-abi,
[ --enable-new-gxx-abi
...
...
gcc/java/Makefile.in
View file @
3c809ba4
...
...
@@ -148,16 +148,20 @@ ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS)
# This is where we get libiberty.a from.
LIBIBERTY
=
../../libiberty/libiberty.a
# This is where we get zlib from. zlibdir is -L../../zlib by default,
# and is nothing when configured with --enable-system-zlib.
ZLIB
=
@zlibdir@
-lz
# How to link with both our special library facilities
# and the system's installed libraries.
LIBS
=
$(INTLLIBS)
$(LIBIBERTY)
$(CLIB)
LIBS
=
$(
ZLIB)
$(
INTLLIBS)
$(LIBIBERTY)
$(CLIB)
LIBDEPS
=
$(INTLLIBS)
$(LIBIBERTY)
../errors.o
# Specify the directories to be searched for header files.
# Both . and srcdir are used, in that order,
# so that tm.h and config.h will be found in the compilation
# subdirectory rather than in the source directory.
INCLUDES
=
-I
.
-I
..
-I
$(srcdir)
-I
$(srcdir)
/..
-I
$(srcdir)
/../config
-I
$(srcdir)
/../../include
INCLUDES
=
-I
.
-I
..
-I
$(srcdir)
-I
$(srcdir)
/..
-I
$(srcdir)
/../config
-I
$(srcdir)
/../../include
@zlibinc@
# Always use -I$(srcdir)/config when compiling.
.c.o
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment