mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-19 22:03:57 +08:00
* genscripts.sh: Fix typo.
This commit is contained in:
10
ld/ChangeLog
10
ld/ChangeLog
@ -1,5 +1,7 @@
|
|||||||
2004-01-28 Alan Modra <amodra@bigpond.net.au>
|
2004-01-28 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
|
* genscripts.sh: Fix typo.
|
||||||
|
|
||||||
* genscripts.sh: Apply $LIBPATH_SUFFIX to $tool_lib and $libdir too.
|
* genscripts.sh: Apply $LIBPATH_SUFFIX to $tool_lib and $libdir too.
|
||||||
|
|
||||||
2004-01-24 Jakub Jelinek <jakub@redhat.com>
|
2004-01-24 Jakub Jelinek <jakub@redhat.com>
|
||||||
@ -23,13 +25,13 @@
|
|||||||
* ldlang.c (lang_get_regions): Add extra parameter 'have_vma'
|
* ldlang.c (lang_get_regions): Add extra parameter 'have_vma'
|
||||||
which if true will prevent the LMA region being used as a
|
which if true will prevent the LMA region being used as a
|
||||||
replacement for a default VMA region.
|
replacement for a default VMA region.
|
||||||
(lang_leave_output_section_statement): Pass extra parameter.
|
(lang_leave_output_section_statement): Pass extra parameter.
|
||||||
(lang_leave_overlay): Likewise.
|
(lang_leave_overlay): Likewise.
|
||||||
* ld.texinfo (Output Section LMA): Document that the LMA
|
* ld.texinfo (Output Section LMA): Document that the LMA
|
||||||
region can be set to the VMA region if no VMA has been set.
|
region can be set to the VMA region if no VMA has been set.
|
||||||
* ldlang.h (struct lang_output_section_phdr_list): Create a
|
* ldlang.h (struct lang_output_section_phdr_list): Create a
|
||||||
typedef for this type. Minor formatting fixes.
|
typedef for this type. Minor formatting fixes.
|
||||||
|
|
||||||
2004-01-13 Nick Clifton <nickc@redhat.com>
|
2004-01-13 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
* ldlang.c (lang_size_sections_1): If dot is advanced, then
|
* ldlang.c (lang_size_sections_1): If dot is advanced, then
|
||||||
|
@ -133,11 +133,11 @@ if [ "x${LIB_PATH}" = "x" ] && [ "x${USE_LIBPATH}" = xyes ] ; then
|
|||||||
if [ "x${use_sysroot}" != "xyes" ] ; then
|
if [ "x${use_sysroot}" != "xyes" ] ; then
|
||||||
case " ${libs} " in
|
case " ${libs} " in
|
||||||
*" ${libdir} "*) ;;
|
*" ${libdir} "*) ;;
|
||||||
*) libs="${libdir} ${libs}"
|
*) libs="${libdir} ${libs}" ;;
|
||||||
esac
|
esac
|
||||||
case " ${libs} " in
|
case " ${libs} " in
|
||||||
*" ${tool_lib} "*) ;;
|
*" ${tool_lib} "*) ;;
|
||||||
*) libs="${tool_lib} ${libs}"
|
*) libs="${tool_lib} ${libs}" ;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user