ChanServ changed the topic of #zig to: zig programming language | ziglang.org | be excellent to each other | channel logs: https://irclog.whitequark.org/zig/
Tobba has quit [Read error: Connection reset by peer]
Tobba has joined #zig
davr0s has joined #zig
redj_ is now known as redj
tankf33der has left #zig [#zig]
joe___ has joined #zig
joe___ has quit [Client Quit]
_whitelogger has joined #zig
ragge has quit [Read error: Connection reset by peer]
ragge has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
eena has joined #zig
meena has quit [Read error: Connection reset by peer]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
noonien has joined #zig
<noonien> hello folks
<noonien> are there any builds of zig that one can use? without having to build zig myself
<MajorLag> for windows anyway
<noonien> ah, i was actually looking for build artifacts, but in travis
<noonien> i'm running linux
<MajorLag> Haven't done any linux stuff in Zig yet, so I don't know.
<noonien> hehe, i see tha github realeases also only contain a windows binary
<noonien> kind of weird that there's a windows binary, and not a linux one
<MajorLag> It is a bit weird, since I think I'm one of only two people here actually using Zig on Windows.
<noonien> hehe
<noonien> quick question, i've compiled zig in a docker container so I don't have to install all the build dependencies in my os
<noonien> does the produced zig library have any more dependencies, or are libraries statically compiled into the binary?
<noonien> ah, a simple ldd answers my question
<noonien> ah, cool
<noonien> wohoo, i can finally get started with zig!
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<noonien> does zig not support soft float?
<noonien> i'm getting the following error: http://vpaste.net/IdQf2
<noonien> there isn't any support for soft float
Ichorio has joined #zig
davr0s has joined #zig
ofelas has joined #zig
Ichorio_ has joined #zig
Ichorio has quit [Ping timeout: 256 seconds]
<andrewrk> hi noonien
<noonien> hello
<andrewrk> I need to add another command line option so that you can specify --target-float-abi soft
<andrewrk> if you like you can replace that panic line with `return FloatAbiSoft` and build zig from source, while you wait for me to implement this feature
<andrewrk> I'll get this fixed for you soon. thanks for the report!
<noonien> that's awesome, thanks!
<noonien> is that how it's done in other compilers? isn't the float abi defined in the environment?
<noonien> eabi | eabihf
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<andrewrk> noonien, oh, good point. Should eabi be soft? I can make that happen
<noonien> hmm, i've no ideea. i'll check how other compiles deal with the target tripple
<noonien> hmm, as far as i can tell, gcc has a parameter for specifying if the target supports hardfloat
<noonien> -mfloat-abi
<noonien> clang seems to have something similar: https://clang.llvm.org/docs/CrossCompilation.html
<MajorLag> sweet. I'll try it out in a minute. I'm cleaning up my win32 bindings. Christ win32api is huge.