diff options
| author | Khem Raj <raj.khem@gmail.com> | 2020-11-24 23:08:22 -0800 |
|---|---|---|
| committer | Andrei Gherzan <andrei@gherzan.ro> | 2020-11-25 17:57:12 +0000 |
| commit | 5db97b41a84296d4bbc8fd7ffc228124af774cf1 (patch) | |
| tree | 3839eed2219c7ace9c706ad736fe1139f0f407b6 | |
| parent | dcdd0e4a20d8eb87e03ac492dbf308c34bef92e4 (diff) | |
| download | meta-raspberrypi-5db97b41a84296d4bbc8fd7ffc228124af774cf1.tar.gz | |
armstubs: Always use gcc compiler
it uses assembly files .S which needs to be processed with gcc alone
until they are made portable use gcc
Fixes
| armstub7.S:175:2: error: instruction requires: thumb
| cbz r6, 9f @ Skip this section if we are core 0
| ^
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | recipes-bsp/armstubs/armstubs.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/recipes-bsp/armstubs/armstubs.bb b/recipes-bsp/armstubs/armstubs.bb index d8f3fe7..7e389df 100644 --- a/recipes-bsp/armstubs/armstubs.bb +++ b/recipes-bsp/armstubs/armstubs.bb | |||
| @@ -34,3 +34,5 @@ addtask deploy before do_build after do_install | |||
| 34 | do_deploy[dirs] += "${DEPLOYDIR}/${PN}" | 34 | do_deploy[dirs] += "${DEPLOYDIR}/${PN}" |
| 35 | 35 | ||
| 36 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 36 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
| 37 | |||
| 38 | TOOLCHAIN = "gcc" | ||
