Microchip Technology XC8 Standard Compiler (Workstation) SW006021-1 SW006021-1 ユーザーズマニュアル

製品コード
SW006021-1
ページ / 518
MPLAB
®
 XC8 C Compiler User’s Guide
DS52053B-page 414
 2012 Microchip Technology Inc.
(432) usage: objtohex [-ssymfile] [object-file [exe-file]] 
(Objtohex)
Improper usage of the command-line tool objtohex. If you are invoking objtohex 
directly, refer to Section 8.3 “OBJTOHEX” for more details. Otherwise this may be an 
internal compiler error and you should contact Microchip Technical Support with details.
(434) too many symbols (*) 
(Linker)
There are too many symbols in the symbol table, which has a limit of * symbols. 
Change some global symbols to local symbols to reduce the number of symbols.
(435) bad segment selector "*" 
(Linker)
The segment specification option (-G) to the linker is invalid, for example:
-GA/f0+10
Did you forget the radix?
-GA/f0h+10
(436) psect "*" re-orged 
(Linker)
This psect has had its start address specified more than once.
(437) missing "=" in class spec 
(Linker)
A class spec needs an = sign, e.g., -Ctext=ROM. See Section 7.2.3 “-Cpsect=class” 
for more information.
(438) bad size in -S option 
(Linker)
The address given in a -S specification is invalid: it should be a valid number, in deci-
mal, octal or hexadecimal radix. The radix is specified by a trailing O, for octal, or H for 
HEX. A leading 0x may also be used for hexadecimal. Case in not important for any 
number or radix. Decimal is the default, for example:
-SCODE=f000
Did you forget the radix?
-SCODE=f000h
(439) bad -D spec: "*" 
(Linker)
The format of a -D specification, giving a delta value to a class, is invalid, for example:
-DCODE
What is the delta value for this class? Maybe you meant something like:
-DCODE=2
(440) bad delta value in -D spec 
(Linker)
The delta value supplied to a -D specification is invalid. This value should an integer of 
base 8, 10 or 16.
(441) bad -A spec: "*" 
(Linker)
The format of a -A specification, giving address ranges to the linker, is invalid, for 
example:
-ACODE
What is the range for this class? Maybe you meant:
-ACODE=0h-1fffh