File: test.desc

package info (click to toggle)
cbmc 5.10-5
  • links: PTS
  • area: main
  • in suites: buster
  • size: 73,416 kB
  • sloc: cpp: 264,330; ansic: 38,268; java: 19,025; python: 4,539; yacc: 4,275; makefile: 2,547; lex: 2,394; sh: 932; perl: 525; xml: 289; pascal: 169
file content (29 lines) | stat: -rw-r--r-- 1,043 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
CORE gcc-only
preproc.i
-mcpu=cortex-a15 -o linked-object.gb object.arm
^EXIT=0$
^SIGNAL=0$
--
^warning: ignoring
^CONVERSION ERROR$
--
This tests the -mcpu=cortex-a15 flag that should activate ARM-32 mode.
The object file 'object.arm' was compiled from 'source.c' with goto-cc
along with an ARM cross-compiler on a 64-bit platform with the following
command line:

  goto-cc -o object.arm --native-compiler=arm-none-eabi-gcc -mcpu=cortex-a15 -c source.c

To regenerate object.arm on an x86_64 machine, you will need to install
an ARM-32 cross compiler and pass the name of that compiler to the
--native-compiler flag. On Ubuntu, you can get a suitable compiler
using:

  sudo apt install gcc-arm-none-eabi

which will install arm-none-eabi-gcc (amongst other things).

preproc.i is already pre-processed so that it can be linked in without
needing to invoke a pre-processor from a cross-compile toolchain on your
local machine. Linking it together with the ARM object file, while
passing -mcpu=cortex-a15 on the command line, should succeed.