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
34be2b36
Commit
34be2b36
authored
Jul 06, 2000
by
Jim Wilson
Committed by
Nick Clifton
Jul 06, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix CXX_FOR_TARGET to add -L libstdc++
From-SVN: r34878
parent
42d18a47
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
4 deletions
+11
-4
ChangeLog
+7
-0
Makefile.in
+4
-4
No files found.
ChangeLog
View file @
34be2b36
2000-07-05 Jim Wilson <wilson@cygnus.com>
* Makefile.in (CXX_FOR_TARGET): Add libstdc++ to the library
search path for a g++ extracted from the build tree. This
will allow link tests run by configure scripts in
subdirectories to succeed.
2000-06-29 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
* MAINTAINERS: Add myself as loop discovery maintainer.
...
...
Makefile.in
View file @
34be2b36
...
...
@@ -258,18 +258,18 @@ CXX_FOR_TARGET = ` \
if
[
-f
$$
r/
$(TARGET_SUBDIR)
/newlib/Makefile
]
;
then
\
case
"
$(target_canonical)
"
in
\
i[3456]86-
*
-cygwin
*
)
\
echo
$$
r/gcc/xgcc
-B
$$
r/gcc/
-B
$(build_tooldir)
/bin/
-B
$$
r/
$(TARGET_SUBDIR)
/newlib/
-L
$$
r/
$(TARGET_SUBDIR)
/winsup
-idirafter
$$
r/
$(TARGET_SUBDIR)
/newlib/targ-include
-idirafter
$$
s/winsup/cygwin/include
-idirafter
$$
s/winsup/w32api/include
-idirafter
$$
s/newlib/libc/include
-idirafter
$$
s/newlib/libc/sys/cygwin
-idirafter
$$
s/newlib/libc/sys/cygwin32
-nostdinc
;
\
echo
$$
r/gcc/xgcc
-B
$$
r/gcc/
-B
$(build_tooldir)
/bin/
-B
$$
r/
$(TARGET_SUBDIR)
/newlib/
-L
$$
r/
$(TARGET_SUBDIR)
/winsup
-idirafter
$$
r/
$(TARGET_SUBDIR)
/newlib/targ-include
-idirafter
$$
s/winsup/cygwin/include
-idirafter
$$
s/winsup/w32api/include
-idirafter
$$
s/newlib/libc/include
-idirafter
$$
s/newlib/libc/sys/cygwin
-idirafter
$$
s/newlib/libc/sys/cygwin32
-nostdinc
-L
$$
r/
$(TARGET_SUBDIR)
/libstdc++
;
\
;;
\
*
)
\
if
[
-f
$$
r/
$(TARGET_SUBDIR)
/winsup/Makefile
]
;
then
\
echo
$$
r/gcc/g++
-B
$$
r/gcc/
-B
$$
r/
$(TARGET_SUBDIR)
/newlib/
-B
$(build_tooldir)
/bin/
-L
$$
r/winsup
-idirafter
$$
r/
$(TARGET_SUBDIR)
/newlib/targ-include
-idirafter
$$
s/newlib/libc/include
-nostdinc
;
\
echo
$$
r/gcc/g++
-B
$$
r/gcc/
-B
$$
r/
$(TARGET_SUBDIR)
/newlib/
-B
$(build_tooldir)
/bin/
-L
$$
r/winsup
-idirafter
$$
r/
$(TARGET_SUBDIR)
/newlib/targ-include
-idirafter
$$
s/newlib/libc/include
-nostdinc
-L
$$
r/
$(TARGET_SUBDIR)
/libstdc++
;
\
else
\
echo
$$
r/gcc/g++
-B
$$
r/gcc/
-B
$(build_tooldir)
/bin/
-idirafter
$$
r/
$(TARGET_SUBDIR)
/newlib/targ-include
-idirafter
$$
s/newlib/libc/include
-nostdinc
;
\
echo
$$
r/gcc/g++
-B
$$
r/gcc/
-B
$(build_tooldir)
/bin/
-idirafter
$$
r/
$(TARGET_SUBDIR)
/newlib/targ-include
-idirafter
$$
s/newlib/libc/include
-nostdinc
-L
$$
r/
$(TARGET_SUBDIR)
/libstdc++
;
\
fi
;
\
;;
\
esac
\
else
\
echo
$$
r/gcc/g++
-B
$$
r/gcc/
-B
$(build_tooldir)
/bin/
;
\
echo
$$
r/gcc/g++
-B
$$
r/gcc/
-B
$(build_tooldir)
/bin/
-L
$$
r/
$(TARGET_SUBDIR)
/libstdc++
;
\
fi
;
\
else
\
if
[
"
$(host_canonical)
"
=
"
$(target_canonical)
"
]
;
then
\
...
...
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