Skip to content

Commit 1d9753a

Browse files
committed
Full list of contributors. Anyone know who @fmag7 is?
1 parent e60ce24 commit 1d9753a

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

Makefile

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11

22
all:
3-
@echo 'To develop : "make develop"'
4-
@echo 'To test install : "make testinstall"'
5-
@echo 'To install : "make install"'
6-
@echo 'To test publish : "make testpublish"'
7-
@echo 'To publish : "make publish"'
3+
@echo ''
4+
@echo 'Here are the targets:'
5+
@echo ''
6+
@echo 'To develop : "make develop"'
7+
@echo 'To test install : "make testinstall"'
8+
@echo 'To install : "make install"'
9+
@echo 'To test publish : "make testpublish"'
10+
@echo 'To publish : "make publish"'
11+
12+
@echo 'To check clang : "make check_clang"'
13+
@echo 'To check dragonegg : "make check_dragonegg"'
14+
@echo ''
815

916

1017
#local editable install for developing
@@ -36,6 +43,9 @@ install:
3643
check_clang:
3744
cd test; python -m unittest -v test_base_driver test_clang_driver
3845

46+
check_dragonegg:
47+
cd test; python -m unittest -v test_base_driver test_dragonegg_driver
48+
3949

4050
clean:
4151
rm -f wllvm/*.pyc wllvm/*~

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,10 @@ Usage
5050
=====
5151

5252
WLLVM includes two python executables: `wllvm` for compiling C code
53-
and `wllvm++` for C++, and an auxiliary tool `extract-bc`.
53+
and `wllvm++` for compiling C++, and an auxiliary tool `extract-bc` for
54+
extracting the bitcode from a build product (object file, executable, library
55+
or archive). There is also a sanity checker, `wllvm-sanity-checker` for detecting
56+
configuration oversights.
5457

5558
Three environment variables must be set to use these wrappers:
5659

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
description='Whole Program LLVM',
2222
long_description=long_description,
2323
url='https://github.com/SRI-CSL/whole-program-llvm',
24-
author='Ian A. Mason, Tristan Ravitch, Dan Liew, Bruno Dutertre, ...',
24+
author='Ian A. Mason, Tristan Ravitch, Dan Liew, Bruno Dutertre, Benjamin Schubert, Berkeley Churchill, Marko Dimjašević, Ben Liblit, fmag7.',
2525
author_email='iam@csl.sri.com',
2626

2727

0 commit comments

Comments
 (0)