Mercurial > urweb
annotate tests/concat.ur @ 1893:9a1097954188
compileC: Link libraries in the right order
This is needed, at least on recent Ubuntu, to fix this linker error
when compiling any Ur/Web application:
ld: /tmp/webapp.o: undefined reference to symbol 'uw_write'
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
---
src/compiler.sml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
author | Anders Kaseorg <andersk@mit.edu> |
---|---|
date | Thu, 21 Nov 2013 14:32:11 -0500 |
parents | c7b9a33c26c8 |
children |
rev | line source |
---|---|
adam@1303 | 1 functor Make(M : sig |
adam@1303 | 2 con ts :: {(Type * Type)} |
adam@1303 | 3 val tab : sql_table (map fst ts) [] |
adam@1303 | 4 val cols : $(map (fn p => p.2 -> string) ts) |
adam@1303 | 5 end) = struct |
adam@1303 | 6 end |
adam@1303 | 7 |
adam@1303 | 8 table t : {A : string} |
adam@1303 | 9 |
adam@1303 | 10 open Make(struct |
adam@1303 | 11 val tab = t |
adam@1303 | 12 val cols = {A = fn p : {B : string, C : string} => p.B ^ p.C} |
adam@1303 | 13 end) |