ChanServ changed the topic of #zig to: zig programming language | ziglang.org | be excellent to each other | channel logs: https://irclog.whitequark.org/zig/
clownpriest has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
benq has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
hoppetosse has quit [Ping timeout: 255 seconds]
cenomla has joined #zig
cenomla has quit [Remote host closed the connection]
cenomla has joined #zig
cenomla has quit [Client Quit]
cenomla has joined #zig
pupp has quit [Ping timeout: 255 seconds]
hasen_judy has joined #zig
cenomla has quit [Quit: cenomla]
cenomla has joined #zig
hasen_judy has quit [Ping timeout: 240 seconds]
cenomla has quit [Quit: cenomla]
cenomla has joined #zig
cenomla has quit [Quit: cenomla]
cenomla has joined #zig
cenomla has quit [Quit: cenomla]
cenomla has joined #zig
cenomla has quit [Quit: cenomla]
cenomla has joined #zig
cenomla has quit [Quit: cenomla]
cenomla has joined #zig
cenomla has quit [Client Quit]
cenomla has joined #zig
cenomla has quit [Client Quit]
cenomla has joined #zig
cenomla has quit [Client Quit]
cenomla has joined #zig
cenomla has quit [Quit: cenomla]
cenomla has joined #zig
hasen_judy has joined #zig
hasen_judy has quit [Ping timeout: 258 seconds]
tiehuis has joined #zig
cenomla has quit [Quit: cenomla]
Perelandric has quit [Ping timeout: 260 seconds]
hasen_judy has joined #zig
hasen_judy has quit [Ping timeout: 258 seconds]
cenomla has joined #zig
redj_ has joined #zig
redj has quit [Ping timeout: 258 seconds]
redj_ is now known as redj
cenomla has quit [Quit: cenomla]
cenomla has joined #zig
cenomla has quit [Quit: cenomla]
pupp has joined #zig
hasen_judy has joined #zig
hasen_judy has quit [Ping timeout: 255 seconds]
redj has quit [Ping timeout: 248 seconds]
redj has joined #zig
hasen_judy has joined #zig
hasen_judy has quit [Ping timeout: 246 seconds]
tiehuis has quit [Quit: WeeChat 1.9.1]
arBmind has joined #zig
hasen_judy has joined #zig
hasen_judy has quit [Ping timeout: 255 seconds]
hasen_judy has joined #zig
arBmind1 has joined #zig
arBmind has quit [Ping timeout: 240 seconds]
hasen_judy has quit [Remote host closed the connection]
hoppetosse has joined #zig
hasen_judy has joined #zig
<andrewrk> hello jzr
<andrewrk> maybe jzr will check the logs and come back
arBmind has joined #zig
hasen_judy has quit [Remote host closed the connection]
arBmind1 has quit [Ping timeout: 240 seconds]
hasen_judy has joined #zig
hasen_judy has quit [Ping timeout: 258 seconds]
hoppetosse has quit [Ping timeout: 255 seconds]
<GitHub149> [zig] andrewrk pushed 1 new commit to master: https://git.io/vdV51
<GitHub149> zig/master 1c28631 Andrew Kelley: use allocator.shrink instead of realloc in os.path.real
cenomla has joined #zig
Perelandric has joined #zig
hasen_judy has joined #zig
cenomla has quit [Quit: cenomla]
hasen_judy has quit [Ping timeout: 246 seconds]
benq has joined #zig
benq has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jzr has joined #zig
<jzr> hello andrewrk, indeed I did :)
<andrewrk> welcome back
hasen_judy has joined #zig
Perelandric has quit [Ping timeout: 260 seconds]
hasen_judy has quit [Ping timeout: 255 seconds]
arBmind has quit [Quit: Leaving.]
arBmind has joined #zig
jabb has joined #zig
<jabb> heyo
<jabb> i like zig
<andrewrk> hi jabb
<jabb> i've been here before, but a long time ago
<andrewrk> good to hear, what are you working on?
<jabb> getting zig to compile on my mac
<jabb> getting errors about missing NOTFOUND variables in cmake
<andrewrk> jabb, you're following the MacOS instructions from the README?
<andrewrk> if you paste the output you're getting I can provide suggestions
<jabb> andrewrk: yep
<andrewrk> brew install llvm@5
<andrewrk> did this part work?
jzr has quit [Ping timeout: 260 seconds]
benq has joined #zig
<jabb> andrewrk: yep
<andrewrk> does llvm appear to be in /usr/local/opt/llvm@5/ ?
<jabb> andrewrk: nope
<jabb> brew outdated llvm@5; and echo $status
<jabb> 0
<andrewrk> jabb, sounds like you are experiencing a homebrew issue
<jabb> darn haha
<jabb> andrewrk: got it working
<jabb> andrewrk: i would contribute, but my job has strict no-outside work policy
<andrewrk> what was the issue?
<GitHub123> [zig] andrewrk pushed 1 new commit to master: https://git.io/vdwye
<GitHub123> zig/master aa78827 Andrew Kelley: add module flag to emit CodeView for COFF object files...
<jabb> andrewrk: it installed to /usr/local/Cellar/llvm
<andrewrk> I see
<andrewrk> is that an older version or something?
<jabb> it's locationed ../../llvm/5.0.0
<jabb> but now building zig test gives errors
<jabb> Created ./test but skipping execution because it is non-native
<jabb> ran make install
<jabb> then ./zig build --build-file ../build.zig test
<andrewrk> that's not an error
<andrewrk> that's zig (successfully) creating test binaries for linux and windows, and then not executing them
<andrewrk> it's testing cross compiling
<andrewrk> maybe I could prefix that message with "OK: "
<andrewrk> or maybe "Created ./test (linux-x86_64) but skipping execution because it is non-native"
<jabb> ahhh gotcha
<jabb> guess_number hangs after entering anything
<andrewrk> jabb, you might need to enter the EOF character (ctrl+D)
<andrewrk> possibly twice even
<andrewrk> I realized that example is a bad example because it requires basically a full implementation of readline
<andrewrk> to be correct
<andrewrk> so it's as if you're reading from a file
<jabb> i see haha
<jabb> or line buffered input
<andrewrk> right. that concept doesn't exist really using standard syscalls. you need something to interact with the terminal with escape codes
<andrewrk> which is what readline does
<jabb> interesting
<jabb> why isn't there a 1-bit number? :P
<jabb> oh i guess bool
<andrewrk> yeah use bool
<andrewrk> it's 1 bit in a packed struct
hasen_judy has joined #zig
hasen_judy has quit [Ping timeout: 255 seconds]
<GitHub40> [zig] andrewrk pushed 1 new commit to master: https://git.io/vdwbw
<GitHub40> zig/master 1f28d64 Andrew Kelley: fix std.io.OutStream.close for windows
arBmind1 has joined #zig