Mercurial > urweb
diff src/compiler.sml @ 272:4d80d6122df1
Initializing database connection
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Tue, 02 Sep 2008 11:57:25 -0400 |
parents | 42dfb0d61cf0 |
children | e4baf03a3a64 |
line wrap: on
line diff
--- a/src/compiler.sml Tue Sep 02 10:51:41 2008 -0400 +++ b/src/compiler.sml Tue Sep 02 11:57:25 2008 -0400 @@ -417,7 +417,7 @@ fun compileC {cname, oname, ename} = let val compile = "gcc -O3 -I include -c " ^ cname ^ " -o " ^ oname - val link = "gcc -pthread -O3 clib/urweb.o " ^ oname ^ " clib/driver.o -o " ^ ename + val link = "gcc -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"