Skip to content

Regenerated cross-compiled arch flag test binaries #1403

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 23, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified regression/ansi-c/arch_flags_mcpu_bad/object.intel
Binary file not shown.
Binary file modified regression/ansi-c/arch_flags_mcpu_good/object.arm
Binary file not shown.
9 changes: 7 additions & 2 deletions regression/ansi-c/arch_flags_mcpu_good/test.desc
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,17 @@ 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 --native-compiler=arm-none-eabi-gcc -mcpu=cortex-a15 -c source.c
goto-cc -o object.arm --native-compiler=arm-none-eabi-gcc -mcpu=cortex-a15 -c source.c

On Ubuntu, you can get a suitable compiler using:
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
Expand Down
Binary file modified regression/ansi-c/arch_flags_mthumb_bad/object.intel
Binary file not shown.
Binary file modified regression/ansi-c/arch_flags_mthumb_good/object.arm
Binary file not shown.
9 changes: 7 additions & 2 deletions regression/ansi-c/arch_flags_mthumb_good/test.desc
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,17 @@ 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 --native-compiler=arm-none-eabi-gcc -mthumb -c source.c
goto-cc -o object.arm --native-compiler=arm-none-eabi-gcc -mthumb -c source.c

On Ubuntu, you can get a suitable compiler using:
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
Expand Down