mirror of
https://github.com/c-cube/tiny_httpd.git
synced 2025-12-05 19:00:32 -05:00
tighten flags; little fix
This commit is contained in:
parent
5d7637becc
commit
c907dc6af1
2 changed files with 7 additions and 2 deletions
2
echo.sh
2
echo.sh
|
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
exec dune exec --profile=release "examples/echo.exe" -- $@
|
exec dune exec --display=quiet --profile=release "examples/echo.exe" -- $@
|
||||||
|
|
|
||||||
7
src/dune
7
src/dune
|
|
@ -1,8 +1,13 @@
|
||||||
|
|
||||||
|
(env
|
||||||
|
(_
|
||||||
|
(flags :standard -warn-error -a+8 -w +a-4-32-40-42-44-70 -color always -safe-string
|
||||||
|
-strict-sequence)))
|
||||||
|
|
||||||
(library
|
(library
|
||||||
(name tiny_httpd)
|
(name tiny_httpd)
|
||||||
(public_name tiny_httpd)
|
(public_name tiny_httpd)
|
||||||
(libraries threads seq)
|
(libraries threads seq)
|
||||||
(flags :standard -safe-string -strict-sequence -w +a-4-40-42 -warn-error -a+8)
|
|
||||||
(wrapped false))
|
(wrapped false))
|
||||||
|
|
||||||
(rule
|
(rule
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue