Abstract
This chapter contains information about using Sourcery G++ Lite on your target system. This chapter also contains information about changes in this release of Sourcery G++ Lite. You should read this chapter to learn how to best use Sourcery G++ Lite on your target system.
Table of Contents
This section documents Sourcery G++ Lite changes for each released revision.
Disassembly of overlapping sections. A bug in the disassembler that caused code to be displayed as data (and vice-versa) in files with overlapping sections has been fixed. This mainly affects the objdump utility.
Installer hangs while refreshing environment.
The Sourcery G++ installer for Microsoft Windows
now updates the PATH
environment
variable without waiting for open applications to
acknowledge the update. This change prevents open
applications from blocking the installer's progress.
Improved assembler diagnostics for 8-bit offsets.
The assembler now correctly diagnoses out-of-range offsets to
instructions such as LDRD
as 8-bit rather
than half-word offsets.
Less disk space required for installation. Sourcery G++ Lite packages are smaller because multiple copies of files have been replaced with hard and/or symbolic links when possible. Both the size of the installer images and the amount of disk space required for an installed package have been reduced.
Thumb register corruption fix. A bug in the compiler that could cause register corruption in Thumb mode has been fixed. The compiler was formerly emitting code to restore registers on function return that was not interrupt safe.
__aeabi_lcmp.
An error in the libgcc implementation of
__aeabi_lcmp
that caused
incorrect results to be returned has been fixed. This is a support
routine defined by the ARM EABI. GCC does not normally use this
routine directly, however it may be used by third-party code.
The \@
assembler pseudo-variable.
A bug in the assembler that caused uses of the \@
pseudo-variable to be mis-parsed as comments has been fixed.
Crash when generating vector code.
A bug that sometimes caused the compiler to crash when invoked with
the -ftree-vectorize
option has been fixed.
Propagation of Thumb symbol attributes.
Symbols referring to Thumb functions on ARM targets now
have their Thumb attribute correctly propagated to any aliases
defined with .set
or .symver
.
Linking of non-ELF images. A linker bug that could cause a crash when linking non-ELF objects for ARM targets has been fixed.
Invalid load instructions.
A bug in the compiler which caused it to generate invalid
assembly (e.g. ldrd r0, [#0, r2]
)
has been fixed.
VFPv3/NEON debug information. A bug in the compiler which caused it to generate incorrect debug information for code using VFPv3/NEON registers has been fixed. The debugger is now able unable to locate and display values held in these registers.
ARMv6-M system instructions.
An assembler bug that caused some ARMv6-M system instructions to
be incorrectly rejected has been fixed. The affected instructions
are msr
, mrs
,
yield
, wfi
,
wfe
and sev
.
Assembly of Thumb-2 load/store multiple instructions.
The Thumb-2 ldm
and stm
assembly mnemonics are now assembled to ldr
and str
instructions when a single register is
transferred, as specified in the Thumb-2 Architecture Supplement.
Conditional Thumb-2 branch instructions. A linker bug that could cause objects involving conditional Thumb-2 branch instructions to be incorrectly rejected has been fixed.
Alignment bug fix. A bug has been fixed that formerly caused incorrect code to be generated in some situations for copying structure arguments being passed by value. The incorrect code caused alignment errors on stack accesses on some targets.