ChanServ changed the topic of #zig to: zig programming language | https://ziglang.org | be excellent to each other | channel logs: https://irclog.whitequark.org/zig/
fengb has quit [Ping timeout: 256 seconds]
hio has quit [Quit: Connection closed for inactivity]
kristoff_it has joined #zig
fengb has joined #zig
<fengb> andrewrk: I didn't consider libc when exporting symbols in wasm so export will target both wasm and libc. It's pretty bad to include libc and it just pulls in all the implemented functions even if they're not used. Is there a more elegant solution?
jjido has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
kristoff_it has quit [Remote host closed the connection]
kristoff_it has joined #zig
kristoff_it has quit [Ping timeout: 246 seconds]
lunamn has quit [Ping timeout: 246 seconds]
lunamn has joined #zig
kristoff_it has joined #zig
kristoff_it has quit [Ping timeout: 255 seconds]
ijneb has joined #zig
<ijneb> v
<ijneb> whoops ignore that
<ijneb> v
ijneb has quit [Quit: Lost terminal]
jevinskie has joined #zig
reductum has joined #zig
jelleke has joined #zig
_whitelogger has joined #zig
kristoff_it has joined #zig
kristoff_it has quit [Ping timeout: 246 seconds]
return0e_ has joined #zig
return0e has quit [Ping timeout: 246 seconds]
hio has joined #zig
kristoff_it has joined #zig
_whitelogger has joined #zig
wilsonk|3 has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
_whitelogger has joined #zig
kristoff_it has quit [Ping timeout: 246 seconds]
qazo has quit [Ping timeout: 246 seconds]
wootehfoot has joined #zig
Sahnvour has joined #zig
kristoff_it has joined #zig
jjido has joined #zig
kristoff_it has quit [Ping timeout: 252 seconds]
jjido has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<mikdusan> i have a macOS host that builds zig from source, tests pass (except for a lld issue), a linux ubuntu VM (VirtualBox) that builds zig from source. tests pass.
dm1try has joined #zig
<mikdusan> i'm interested in getting a windows VM setup to achieve building zig from source.
<mikdusan> so i have windows 10 VM installed, account created. openssh activated. powershell set as default when ssh'ing in.
<mikdusan> so my first question is, should my tools like git, cmake, tar, be windows proper (terminology?) or cygwin based. if at all possible would like to
<mikdusan> continue similar iterative cycle - git, vim, cmake, run tests. via ssh.
<mikdusan> any suggestions or pointers would be welcome
<Sahnvour> git for windows is pretty good, it should have everything you need
<Sahnvour> also you might want to look at the scoop package manager, or chocolatey
<mikdusan> i've heard of chocolately before. do you recommend one over other?
<Sahnvour> I've gone with scoop recently that does not require to be run through powershell with admin rights
<Sahnvour> but it has less packages
jjido has joined #zig
_whitelogger has joined #zig
dm1try has quit [Quit: Page closed]
jjido has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Sahnvour has quit [Ping timeout: 246 seconds]
kristoff_it has joined #zig
Zaab1t has joined #zig
Zaab1t has quit [Client Quit]
scientes has joined #zig
scientes has quit [Remote host closed the connection]
Sahnvour has joined #zig
Sahnvour_ has joined #zig
scientes has joined #zig
hio has quit [Quit: Connection closed for inactivity]
Sahnvour has quit [Ping timeout: 255 seconds]
Sahnvour_ has quit [Quit: Leaving]
lunamn has quit [Ping timeout: 258 seconds]
lunamn has joined #zig
moo has joined #zig
wootehfoot has quit [Ping timeout: 246 seconds]
shawn_ has joined #zig
scientes has quit [Ping timeout: 246 seconds]
shawn_ has quit [Remote host closed the connection]
shawn_ has joined #zig
shawn_ is now known as scientes
hio has joined #zig
scientes has quit [Remote host closed the connection]
scientes has joined #zig
nullher0es has quit [Quit: WeeChat 2.4]
scientes has quit [Remote host closed the connection]
scientes has joined #zig
scientes has quit [Read error: Connection reset by peer]
scientes has joined #zig
kristoff_it has quit [Ping timeout: 246 seconds]
jjido has joined #zig
kristoff_it has joined #zig
jjido has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jjido has joined #zig
jjido has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
TheLemonMan has joined #zig
TheLemonMan has quit [Quit: "It's now safe to turn off your computer."]
adrusi has quit [Ping timeout: 268 seconds]
qazo has joined #zig
moo has quit [Quit: Leaving]
wootehfoot has joined #zig
kristoff_it has quit [Ping timeout: 246 seconds]
hio has quit [Quit: Connection closed for inactivity]
_whitelogger has joined #zig
Thalheim has joined #zig
fengb has quit [Ping timeout: 256 seconds]
kristoff_it has joined #zig
kristoff_it has quit [Ping timeout: 245 seconds]
wootehfoot has quit [Ping timeout: 246 seconds]
qazo_ has joined #zig
qazo has quit [Ping timeout: 246 seconds]
qazo_ has quit [Ping timeout: 246 seconds]
_whitelogger has joined #zig
<Xe> so quick question
<Xe> is it expected that webassembly output fails on the latest nightly build?
<Xe> /Users/cadey/Prefix/zig/lib/zig/std/special/bootstrap.zig:113:33: error: root source file has no member called 'main'
<Xe> and if i try to define a main
<Xe> /Users/cadey/Prefix/zig/lib/zig/std/special/bootstrap.zig:113:33: error: 'main' is private
kristoff_it has joined #zig
<Xe> i need to use build-lib for now, gotcha
kristoff_it has quit [Ping timeout: 255 seconds]
via has joined #zig
<daurnimator> Is there a way to mark a test as pending/skipped on current architecture?
<daurnimator> oh, finally found it I think. return error.SkipZigTest
redj has quit [Read error: Connection reset by peer]
redj has joined #zig
<Xe> is there a way to ignore return values?
<daurnimator> also, :( the bswap => byteswap breaking change makes it really hard to work on master using 0.4.0
<daurnimator> Xe: assign to _
<daurnimator> Xe: _ is a magic variable that always exists. anything assigned to it is thrown away.
<Xe> okay, how do i defer a function that has a return value?
<daurnimator> Xe: defer takes a block
<daurnimator> Xe: defer { _ = foo(); }
<Xe> i'm getting "cannot return from defer expression"
ijneb has joined #zig
<Xe> i see
ijneb has quit [Ping timeout: 255 seconds]
redj has quit [Read error: Connection reset by peer]