Some linker options and module statements take numeric arguments.
You can specify numbers in any of the following forms:
- Decimal
- Any number not prefixed with 0 or 0x
is a decimal number. For example, 1234 is a decimal number.
- Octal
- Any number prefixed with 0 (but not 0x) is an octal number.
For example, 01234 is an octal number.
- Hexadecimal
- Any number prefixed with 0x is a hexadecimal number. For example,
0x1234 is a hexadecimal number.