Skip to content

Commit 92abe21

Browse files
committed
Add example and fix 'make run' target
1 parent 5b34b53 commit 92abe21

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.*.swp
22
build
3+
hello.bc

part1/Makefile

+5-3
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,14 @@ default: $(TOOLS)
3333
$(TOOLS):
3434
$(OCAMLBUILD) $(OCAMLBUILDFLAGS) $($@_OCAMLBUILDFLAGS) $($@_OCAMLBUILDFLAGS_$(TARGET)) -I $(SRC_DIR) -build-dir build/$@ $@.$(TARGET)
3535

36-
run: $(TOOLS)
37-
CAML_LD_LIBRARY_PATH=/usr/lib/ocaml/llvm-$(LLVM_VERSION) ./build/llvmBCTargetTriple/src/llvmBCTargetTriple.byte
36+
run: $(TOOLS) hello.bc
37+
CAML_LD_LIBRARY_PATH=/usr/lib/ocaml/llvm-$(LLVM_VERSION) ./build/tutorial01/src/tutorial01.byte hello.bc
3838

3939
clean: $(CLEAN_RULES)
40+
-rm -f hello.bc
4041

4142
$(CLEAN_RULES):
4243
$(OCAMLBUILD) $(OCAMLBUILDFLAGS) -I $(SRC_DIR) -build-dir build/$(patsubst %-clean,%,$@) -clean $(patsubst %-clean,%,$@).$(TARGET)
4344

44-
45+
hello.bc: hello.c
46+
$(CLANG) -c -emit-llvm $<

part1/hello.c

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/* compile with: clang -emit-llvm -c hello.c -o hello.bc */
2+
#include <stdio.h>
3+
4+
int main(void)
5+
{
6+
printf("hello, world\n");
7+
8+
return 0;
9+
}

0 commit comments

Comments
 (0)