Mercurial > urweb
diff src/compiler.sml @ 317:6a4e365db60c
Fix memory bounds checks; specialization of multi-argument polymorphic function works
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Thu, 11 Sep 2008 10:34:47 -0400 |
parents | e21d0dddda09 |
children | e457d8972ff1 |
line wrap: on
line diff
--- a/src/compiler.sml Thu Sep 11 10:14:59 2008 -0400 +++ b/src/compiler.sml Thu Sep 11 10:34:47 2008 -0400 @@ -481,8 +481,8 @@ fun compileC {cname, oname, ename} = let - val compile = "gcc -Wstrict-prototypes -Werror -s -O3 -I include -c " ^ cname ^ " -o " ^ oname - val link = "gcc -Werror -s -O3 -pthread -lpq clib/urweb.o " ^ oname ^ " clib/driver.o -o " ^ ename + val compile = "gcc -Wstrict-prototypes -Werror -O3 -I include -c " ^ cname ^ " -o " ^ oname + val link = "gcc -Werror -O3 -pthread -lpq clib/urweb.o " ^ oname ^ " clib/driver.o -o " ^ ename in if not (OS.Process.isSuccess (OS.Process.system compile)) then print "C compilation failed\n"