adrien changed the topic of #ocaml to: Discussions about the OCaml programming language | http://www.ocaml.org | OCaml 4.08 release notes: https://caml.inria.fr/pub/distrib/ocaml-4.08/notes/Changes | Try OCaml in your browser: http://try.ocamlpro.com | Public channel logs at http://irclog.whitequark.org/ocaml
iovec has quit [Quit: Connection closed for inactivity]
hdurer[m] has quit [Write error: Connection reset by peer]
isaachodes[m] has quit [Remote host closed the connection]
aspiwack[m] has quit [Remote host closed the connection]
Haudegen[m] has quit [Remote host closed the connection]
jimt[m] has quit [Write error: Connection reset by peer]
Virgile[m] has quit [Remote host closed the connection]
rgr[m] has quit [Write error: Connection reset by peer]
dl3br[m] has quit [Write error: Connection reset by peer]
stan[m] has quit [Write error: Connection reset by peer]
aecepoglu[m] has quit [Read error: Connection reset by peer]
flux[m] has quit [Write error: Connection reset by peer]
keep-learning[m] has quit [Write error: Connection reset by peer]
smondet[m] has quit [Write error: Connection reset by peer]
copy` has quit [Write error: Connection reset by peer]
ptival[m] has quit [Remote host closed the connection]
peddie has quit [Remote host closed the connection]
trakjohnson[m] has quit [Write error: Connection reset by peer]
otini has quit [Remote host closed the connection]
regnat[m] has quit [Remote host closed the connection]
sepp2k has quit [Remote host closed the connection]
malina has quit [Ping timeout: 245 seconds]
rgr[m] has joined #ocaml
keep_learning has joined #ocaml
Haudegen[m] has joined #ocaml
aspiwack[m] has joined #ocaml
dl3br[m] has joined #ocaml
aecepoglu[m] has joined #ocaml
flux[m] has joined #ocaml
smondet[m] has joined #ocaml
jimt[m] has joined #ocaml
peddie has joined #ocaml
hdurer[m] has joined #ocaml
copy` has joined #ocaml
keep-learning[m] has joined #ocaml
otini has joined #ocaml
ptival[m] has joined #ocaml
regnat[m] has joined #ocaml
trakjohnson[m] has joined #ocaml
stan[m] has joined #ocaml
Virgile[m] has joined #ocaml
sepp2k has joined #ocaml
isaachodes[m] has joined #ocaml
zolk3ri has quit [Remote host closed the connection]
kvda has joined #ocaml
AtumT has quit [Quit: AtumT]
j14159 has joined #ocaml
tormen_ has joined #ocaml
tormen has quit [Ping timeout: 245 seconds]
mfp has quit [Ping timeout: 246 seconds]
gravicappa has joined #ocaml
amiloradovsky has joined #ocaml
mbuf has joined #ocaml
_13h has left #ocaml [#ocaml]
narimiran has joined #ocaml
jao has quit [Ping timeout: 258 seconds]
ggole has joined #ocaml
EmeraldMoon has joined #ocaml
EmeraldMoon has quit [Remote host closed the connection]
<Nikkel> How do I make ocsigenserver print values printed from an ocaml library used within the ocsigen application?
<Nikkel> lets say I have foo.ml which contains print () = Printf.eprintf "aaa"; and I have an ocsigenserver endpoint that triggers this
mbuf has quit [Ping timeout: 246 seconds]
mbuf has joined #ocaml
mbuf has quit [Ping timeout: 264 seconds]
mbuf has joined #ocaml
Haudegen has joined #ocaml
freyr69 has joined #ocaml
amiloradovsky has quit [Ping timeout: 258 seconds]
barockobamo has joined #ocaml
vyorkin has joined #ocaml
<vyorkin> I'm trying to build the https://github.com/andrenth/ocaml-uint package, but getting the "Error: Unbound module Stdlib"
<vyorkin> My OCaml version is 4.06.1
<vyorkin> It might smth obvious, but I'm still quite new to OCaml...
<vyorkin> Not sure how to diagnose that
<Leonidas> did ocaml 4.09 break augeas because of multicore? hmm
<vyorkin> ah, Pervasives was renamed to Stdlib in 4.08, nvm...
<vyorkin> I'll just try to use more recent version of OCaml
<Leonidas> vyorkin: you should either submit a PR/Bug or use a supported version (if uint requires 4.07)
<Leonidas> but it even says that you should use stdint
ruffy_ has quit [Quit: WeeChat 2.5]
ruffy_ has joined #ocaml
ollehar has joined #ocaml
bitwinery has quit [Quit: Leaving]
EmeraldMoon has joined #ocaml
zolk3ri has joined #ocaml
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
EmeraldMoon has quit [Remote host closed the connection]
mfp has joined #ocaml
Haudegen has quit [Quit: Bin weg.]
<freyr69> Leonidas: Multicore bits are in trunk, no?
jbrown has joined #ocaml
<freyr69> vyorkin: Why would you like to use uint instead of stdint? Also latest OCaml releases have unsigned operations, if you would like to use unsigned ints
EmeraldMoon has joined #ocaml
ygrek has joined #ocaml
Nikkel has quit [Ping timeout: 264 seconds]
AtumT has joined #ocaml
<dinosaure> freyr69: really??? where is documentation about that?
klntsky has quit [Remote host closed the connection]
klntsky has joined #ocaml
Haudegen has joined #ocaml
Nikkel has joined #ocaml
<flux[m]> dinosaure: hadn't noticed myself that either but seems from the corresponding documentation for Int32, Int64 and NativeInt: https://github.com/ocaml/ocaml/pull/1458
<dinosaure> oh I did not notice it, thx
spew has joined #ocaml
<vyorkin> how can I ask dune to build the specific library? https://github.com/ocaml-ppx/ppx_deriving_protobuf/blob/abd17e3d9fe7310ec6007c772c925586e0dc9eba/src/dune#L10, for example
<vyorkin> freyr69: The ppx_deriving_protobuf depends on uint, so I have no choice :)
<freyr69> vyorkin: dune build public_name?
<vyorkin> it says Don't know how to build ppx_deriving_protobuf.runtime ...
<vyorkin> I'm re-reading to dune docs
<vyorkin> Have no idea
<vyorkin> Looks like I need to create another opam file for named "ppx_deriving_protobuf.runtime.opam"
<dinosaure> ppx_deriving_protobuf.runtime should be a part of ppx_deriving_protobuf
<dinosaure> so `dune build -p ppx_deriving_protobuf` should build the sub-library `runtime` I believe
<vyorkin> From the nix-shell: `ocamlfind: Package `ppx_deriving_protobuf.runtime' not found
<vyorkin> `ocaml-protoc` depends on the `ppx_deriving_protobuf.runtime` but it can not see it when I'm using the `nix-shell` to setup the dev env
<vyorkin> but as I can see here https://github.com/mransan/ocaml-protoc/blob/0.1.1/Makefile#L4 the "ocamlfind" should be able to find it
laudecay has joined #ocaml
<freyr69> vyorkin: ocamlfind wouldn't find it if you've simply built it
<freyr69> ocamlfind and dune are separate projects
<freyr69> you can install your package with `dune install`, and then ocamlfind should find it (considering both are in the same opam switch/environment)
<freyr69> What exactly are you trying to achieve?
ravenous_ has joined #ocaml
laudecay has quit [Ping timeout: 245 seconds]
FreeBirdLjj has joined #ocaml
pino|work has quit [Quit: brb]
pino|work has joined #ocaml
FreeBirdLjj has quit [Ping timeout: 244 seconds]
AtumT_ has joined #ocaml
AtumT has quit [Read error: Connection reset by peer]
ravenous_ has quit [Ping timeout: 252 seconds]
mk__ has joined #ocaml
laudecay has joined #ocaml
laudecay has quit [Changing host]
laudecay has joined #ocaml
simon is now known as sshine
eagleflo has quit [Remote host closed the connection]
jao has joined #ocaml
pino|work has quit [Quit: brb]
pino|work has joined #ocaml
eagleflo has joined #ocaml
ollehar has quit [Ping timeout: 245 seconds]
ygrek has quit [Ping timeout: 245 seconds]
mk__ has quit [Remote host closed the connection]
freyr69 has quit [Remote host closed the connection]
Haudegen has quit [Quit: Bin weg.]
eagleflo has quit [Remote host closed the connection]
q9929t has joined #ocaml
eagleflo has joined #ocaml
Serpent7776 has joined #ocaml
crowley95 has quit [Ping timeout: 246 seconds]
q9929t has quit [Quit: q9929t]
malina has joined #ocaml
mbuf has quit [Quit: Leaving]
ziyourenxiang has quit [Ping timeout: 244 seconds]
<vyorkin> but I can't use `dune install` on NixOS...
<vyorkin> freyr69: I'm trying to write a nix-derivation to build the ocaml-protoc package, which depends on the ppx_deriving_protobuf.runtime
barockobamo has quit [Remote host closed the connection]
<vyorkin> maybe it would be easier to try buildFHSUserEnv
laudecay has quit [Ping timeout: 245 seconds]
vyorkin has quit [Ping timeout: 258 seconds]
gravicappa has quit [Ping timeout: 264 seconds]
Haudegen has joined #ocaml
_whitelogger has joined #ocaml
crichoux has joined #ocaml
crichoux has quit [Changing host]
crichoux has joined #ocaml
crichoux is now known as laudecay
ggole has quit [Quit: Leaving]
vyorkin has joined #ocaml
vyorkin has quit [Client Quit]
kamog has quit [Read error: Connection reset by peer]
EmeraldMoon has quit [Quit: Ping timeout (120 seconds)]
ravenous_ has joined #ocaml
Anarchos has joined #ocaml
vyorkin has joined #ocaml
crowley95 has joined #ocaml
Anarchos has quit [Quit: Vision[0.10.3]: i've been blurred!]
andreas303 has quit [Remote host closed the connection]
gravicappa has joined #ocaml
andreas303 has joined #ocaml
jnavila has joined #ocaml
kit_ty_kate has quit [Quit: WeeChat 1.6]
kit_ty_kate has joined #ocaml
gravicappa has quit [Ping timeout: 264 seconds]
laudecay has quit [Ping timeout: 246 seconds]
fardale has quit [Ping timeout: 250 seconds]
fardale has joined #ocaml
cartwright has joined #ocaml
cantstanya has quit [Ping timeout: 260 seconds]
laudecay has joined #ocaml
laudecay has quit [Changing host]
laudecay has joined #ocaml
kakadu has joined #ocaml
rosterok has joined #ocaml
narimiran has quit [Ping timeout: 245 seconds]
iovec has joined #ocaml
laudecay has quit [Ping timeout: 246 seconds]
ravenous_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
vyorkin`` has joined #ocaml
vyorkin has quit [Ping timeout: 246 seconds]
Serpent7776 has quit [Quit: leaving]
sonologico has joined #ocaml
jnavila has quit [Remote host closed the connection]
Hrundi_V_Bakshi has joined #ocaml
laudecay has joined #ocaml
laudecay has quit [Ping timeout: 245 seconds]
Nikkel has quit [Ping timeout: 264 seconds]
Nikkel has joined #ocaml
ocabot has joined #ocaml
delysin has quit [Quit: WeeChat 2.5]
AtumT_ has quit [Quit: AtumT_]
delysin has joined #ocaml
EmeraldMoon has joined #ocaml
laudecay has joined #ocaml
laudecay has quit [Changing host]
laudecay has joined #ocaml
kakadu has quit [Remote host closed the connection]
laudecay has quit [Ping timeout: 246 seconds]
Hrundi_V_Bakshi has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
Haudegen has quit [Ping timeout: 246 seconds]
rosterok has quit [Quit: Connection closed for inactivity]
vyorkin`` has quit [Ping timeout: 245 seconds]
kakadu has joined #ocaml
kakadu_ has quit [Ping timeout: 244 seconds]
ziyourenxiang has joined #ocaml