Mercurial > urweb
annotate tests/ctextbox.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 | 983d9b38abc7 |
children |
rev | line source |
---|---|
adamc@1173 | 1 style foo |
adamc@1173 | 2 |
adamc@606 | 3 fun main () : transaction page = |
adamc@606 | 4 s <- source "Initial"; |
adamc@1173 | 5 return <xml> |
adamc@1173 | 6 <head> |
adamc@1173 | 7 <link rel="stylesheet" type="text/css" href="http://localhost/static/style.css"/> |
adamc@1173 | 8 </head> |
adamc@1173 | 9 <body> |
adamc@1173 | 10 <ctextbox source={s} size=5/> |
adamc@1173 | 11 <ctextbox class={foo} source={s}/> |
adamc@606 | 12 |
adamc@1173 | 13 <dyn signal={s <- signal s; return (cdata s)}/> |
adamc@1173 | 14 </body> |
adamc@1173 | 15 </xml> |