fix: correction fo command for building assembly
This commit is contained in:
parent
d1f14cd96c
commit
4088a7eeba
15
README.md
15
README.md
@ -1,8 +1,21 @@
|
|||||||
This program, compiled with clang 12+, should work.
|
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
|
make run
|
||||||
```
|
```
|
||||||
|
|
||||||
|
If you wish to see the assembly :
|
||||||
|
|
||||||
|
```
|
||||||
|
make build-assembly
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
# Source
|
||||||
|
|
||||||
Originates from https://twitter.com/jckarter/status/1428072308351016969
|
Originates from https://twitter.com/jckarter/status/1428072308351016969
|
||||||
|
7
makefile
7
makefile
@ -5,14 +5,15 @@ all: main
|
|||||||
main: isEven.o main.o
|
main: isEven.o main.o
|
||||||
@clang++ main.o isEven.o -lstdc++ --output main ${CFLAGS}
|
@clang++ main.o isEven.o -lstdc++ --output main ${CFLAGS}
|
||||||
|
|
||||||
.PHONY: build-assembly
|
isEven.s: isEven.cpp
|
||||||
build-assembly:
|
@clang++ $< -S -masm=intel ${CFLAGS}
|
||||||
@clang++ lolilol.cpp -S -masm=intel ${CFLAGS}
|
|
||||||
|
|
||||||
.PHONY: run
|
.PHONY: run
|
||||||
run: main
|
run: main
|
||||||
./main
|
./main
|
||||||
|
|
||||||
|
.PHONY: build-assembly
|
||||||
|
build-assembly: isEven.s
|
||||||
|
|
||||||
main.o: isEven.h
|
main.o: isEven.h
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user