Skip to content

Commit ea445a0

Browse files
committed
restructure compilation to compile wrapper code separately
1 parent b195f98 commit ea445a0

File tree

13 files changed

+1016
-936
lines changed

13 files changed

+1016
-936
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,8 @@ Install by creating a symbolic link, e.g.:
260260
sudo ln -sf dcc /usr/local/bin/dcc++
261261
```
262262

263-
Running dual-sanitizers is not currently supported for C++.
263+
A significant limitation is that running dual-sanitizers is not currently supported for the
264+
`iostream` library which is commonly used in novice programs.
264265

265266

266267
# Run-time Error Handling Implementation

compile_time_python/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from compile import compile_user_program
1+
from compile import main
22

33
if __name__ == "__main__":
4-
compile_user_program()
4+
main()

0 commit comments

Comments
 (0)