fix: correction fo command for building assembly

This commit is contained in:
koalp 2021-08-19 17:07:36 +02:00
parent d1f14cd96c
commit 4088a7eeba
Signed by: koalp
GPG Key ID: 35B21047DEB09A81
2 changed files with 18 additions and 4 deletions

View File

@ -1,8 +1,21 @@
This program, compiled with clang 12+, should work.
However, it is using an undefined behaviour in the `isEven.cpp` file.
However, it is using an undefined behaviour in the [`isEven.cpp` file](isEven.cpp).
# How to use
Run
```
make run
```
If you wish to see the assembly :
```
make build-assembly
```
# Source
Originates from https://twitter.com/jckarter/status/1428072308351016969

View File

@ -5,14 +5,15 @@ all: main
main: isEven.o main.o
@clang++ main.o isEven.o -lstdc++ --output main ${CFLAGS}
.PHONY: build-assembly
build-assembly:
@clang++ lolilol.cpp -S -masm=intel ${CFLAGS}
isEven.s: isEven.cpp
@clang++ $< -S -masm=intel ${CFLAGS}
.PHONY: run
run: main
./main
.PHONY: build-assembly
build-assembly: isEven.s
main.o: isEven.h