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
c0f08649
Commit
c0f08649
authored
23 years ago
by
Jakub Jelinek
Committed by
Jakub Jelinek
23 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* mklibgcc.in: Don't use GNU make extension.
From-SVN: r50156
parent
f79f2651
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
8 deletions
+12
-8
gcc/ChangeLog
+4
-0
gcc/mklibgcc.in
+8
-8
No files found.
gcc/ChangeLog
View file @
c0f08649
2002-02-28 Jakub Jelinek <jakub@redhat.com>
* mklibgcc.in: Don't use GNU make extension.
2002-02-28 Neil Booth <neil@daikokuya.demon.co.uk>
* c-parse.in (STATIC): New terminal.
...
...
This diff is collapsed.
Click to expand it.
gcc/mklibgcc.in
View file @
c0f08649
...
...
@@ -273,15 +273,15 @@ for ml in $MULTILIBS; do
libgcc_a_objs
=
"
$libgcc_objs
$libgcc_st_objs
"
if
[
"@libgcc_visibility@"
=
yes
]
;
then
libgcc_a_objs
=
`
echo
"
${
libgcc_a_objs
}
"
| sed s~
${
objext
}
' ~.oS ~g'
`
# .oS objects will have all non-local symbol definitions .hidden
libgcc_a_objs
=
echo
""
echo
"
$libgcc_a_objs
: libgcc/
${
dir
}
/%.oS: libgcc/
${
dir
}
/%
${
objext
}
"
echo
" @
\$
(NM_FOR_TARGET)
$SHLIB_NM_FLAGS
\$
^"
\\
echo
" |
\$
(AWK) 'NF == 3 { print
\"
.hidden
\"
,
\$\$
3 }'"
\\
echo
' | $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) -Wl,-r -nostdinc'
\\
echo
' -nostdlib -o $@ $^ -xassembler -'
for
o
in
$libgcc_objs
$libgcc_st_objs
;
do
# .oS objects will have all non-local symbol definitions .hidden
oS
=
`
echo
${
o
}
| sed s~
${
objext
}
'$~.oS~g'
`
echo
"
${
oS
}
: stmp-dirs
${
o
}
"
echo
' @$(NM_FOR_TARGET) '
${
SHLIB_NM_FLAGS
}
${
o
}
' | $(AWK) '
\'
'NF == 3 { print ".hidden", $$3 }'
\'
' | $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) -r -nostdinc -nostdlib -o $@ '
${
o
}
' -xassembler -'
libgcc_a_objs
=
"
${
libgcc_a_objs
}
${
oS
}
"
done
fi
echo
""
...
...
This diff is collapsed.
Click to expand it.
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