|
| 1 | +# |
| 2 | +# Copyright (c) 2024, Arm Limited and affiliates. |
| 3 | +# SPDX-License-Identifier: Apache-2.0 |
| 4 | +# |
| 5 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | +# you may not use this file except in compliance with the License. |
| 7 | +# You may obtain a copy of the License at |
| 8 | +# |
| 9 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +# |
| 11 | +# Unless required by applicable law or agreed to in writing, software |
| 12 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | +# See the License for the specific language governing permissions and |
| 15 | +# limitations under the License. |
| 16 | +# |
| 17 | + |
| 18 | +include ../../Makefile.conf |
| 19 | + |
| 20 | +build: hello.hex hello-exn.hex |
| 21 | + |
| 22 | +hello.hex: hello.cpp |
| 23 | + $(BIN_PATH)/clang++ $(MICROBIT_TARGET) $(CRT_SEMIHOST) $(CPP_FLAGS) -print-multi-directory -g -T ../../ldscripts/microbit.ld -o hello.elf $^ | grep -v "_exn_" |
| 24 | + $(BIN_PATH)/clang++ $(MICROBIT_TARGET) $(CRT_SEMIHOST) $(CPP_FLAGS) -g -T ../../ldscripts/microbit.ld -o hello.elf $^ |
| 25 | + $(BIN_PATH)/llvm-objcopy -O ihex hello.elf hello.hex |
| 26 | + |
| 27 | +hello-exn.hex: hello-exn.cpp |
| 28 | + $(BIN_PATH)/clang++ $(MICROBIT_TARGET) $(CRT_SEMIHOST) -print-multi-directory -g -T ../../ldscripts/microbit.ld -o hello.elf $^ | grep "_exn_" |
| 29 | + $(BIN_PATH)/clang++ $(MICROBIT_TARGET) $(CRT_SEMIHOST) -g -T ../../ldscripts/microbit.ld -o hello-exn.elf $^ |
| 30 | + $(BIN_PATH)/llvm-objcopy -O ihex hello-exn.elf hello-exn.hex |
| 31 | + |
| 32 | +run: hello.hex hello-exn.hex |
| 33 | + qemu-system-arm -M microbit -semihosting -nographic -device loader,file=hello.hex |
| 34 | + qemu-system-arm -M microbit -semihosting -nographic -device loader,file=hello-exn.hex 2>&1 | grep "caught" |
| 35 | + |
| 36 | +clean: |
| 37 | + rm -f *.elf *.hex |
| 38 | + |
| 39 | +.PHONY: clean run |
0 commit comments