X-Git-Url: http://www.average.org/gitweb/?p=pdns-pipe-nmc.git;a=blobdiff_plain;f=build;h=c1f039fd8aa96c19369207e049b1d4e071d0be7f;hp=004b9736533e3ff802c5e1258664f67a64102e30;hb=92504303416dfc46f1a4e4ed45ddd3203919cf8f;hpb=2bb37cd8f3ac1737130aa57133806361dcd2ac9d diff --git a/build b/build index 004b973..c1f039f 100755 --- a/build +++ b/build @@ -9,10 +9,16 @@ echo "Making $file.$sfx" # -optl-pthread -pgml g++ "$file" # but cannot make it "only glibc is shared". And with static glibc, # getaddrinfo does not work on systems with different glibc. +# +# To build with ghc, run this: +#ghc --make -optP-include -optPdist/build/autogen/cabal_macros.h "$file" +# but it is still necessary to run `cabal configure` before to generate +# the file `dist/build/autogen/cabal_macros.h`. + cabal build case $? in 0) ;; *) echo build falied; exit 1 ;; esac -mv "$file" "$file.$sfx" || exit 1 +mv "dist/build/$file/$file" "$file.$sfx" || exit 1 gpg --detach-sign "$file.$sfx"