diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/vxworks.h | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index aa1e9d3..f789148 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-07-26 Nathan Froyd <froydnj@codesourcery.com> + + * config/vxworks.h (VXWORKS_LINK_SPEC): Fix typo. + (HAVE_AS_GNU_ATTRIBUTE): Undefine. + 2007-07-26 Mark Shinwell <shinwell@codesourcery.com> Julian Brown <julian@codesourcery.com> diff --git a/gcc/config/vxworks.h b/gcc/config/vxworks.h index 2535b7a..ec20390 100644 --- a/gcc/config/vxworks.h +++ b/gcc/config/vxworks.h @@ -59,7 +59,7 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA %{mrtp:-q %{h*} \ %{R*} %{!Wl,-T*: %{!T*: %(link_start) }} \ %(link_target) %(link_os)}} \ - %{v:-V} \ + %{v:-v} \ %{shared:-shared} \ %{Bstatic:-Bstatic} \ %{Bdynamic:-Bdynamic} \ @@ -131,3 +131,6 @@ extern void vxworks_asm_out_destructor (rtx symbol, int priority); while (0) #define VXWORKS_KIND VXWORKS_KIND_NORMAL + +/* The diab linker does not handle .gnu_attribute sections. */ +#undef HAVE_AS_GNU_ATTRIBUTE |