Re: [julia-users] segfault when building master on linux

2016-07-27 Thread Tony Kelman
Sorry bout that, I have a knack for causing build issues that end up making everyone rebuild llvm as accidental (or sometimes necessary) side effects of fixing other various things. make -C deps distclean-llvm should be enough for this and hopefully it won't come back after that. fe193b532d8b1

Re: [julia-users] segfault when building master on linux

2016-07-27 Thread Yichao Yu
On Thu, Jul 28, 2016 at 8:40 AM, andrew cooke wrote: > > last log is > > commit bcc2121dc31647fc0999d09c10df91d35f216838 > Merge: d0a378d 276c52e > Author: Jeff Bezanson > Date: Wed Jul 27 14:28:16 2016 -0600 > Merge pull request #17638 from JuliaLang/jb/cleanup > formatting fixes and c

[julia-users] Re: segfault when building master on linux

2016-07-27 Thread andrew cooke
well, checking out and building completely from zero fixed it, whatever it was. On Wednesday, 27 July 2016 20:40:44 UTC-4, andrew cooke wrote: > > > last log is > > commit bcc2121dc31647fc0999d09c10df91d35f216838 > Merge: d0a378d 276c52e > Author: Jeff Bezanson > Date: Wed Jul 27 14:28:16 201

[julia-users] segfault when building master on linux

2016-07-27 Thread andrew cooke
last log is commit bcc2121dc31647fc0999d09c10df91d35f216838 Merge: d0a378d 276c52e Author: Jeff Bezanson Date: Wed Jul 27 14:28:16 2016 -0600 Merge pull request #17638 from JuliaLang/jb/cleanup formatting fixes and code cleanup and this is the error (after make clean, then make, and w

[julia-users] Re: Does a wrapper for gmtime exist

2016-07-27 Thread Jeffrey Sarnoff
Andy, You are welcome to use https://github.com/J-Sarnoff/UTime.jl Pkg.clone("https://github.com/J-Sarnoff/UTime.jl";) using UTime localtime() 2016-07-27T14:41:37.497-04:00 ut() 2016-07-27T18:41:42Z gmt() # gmt aliases ut 2016-07-27T18:41:45Z alocaltime = localtime() 2016-07-27T14:42:04.282-0

[julia-users] Re: unable to connect to FTP using IP address

2016-07-27 Thread Yared Melese
Hi Samuel, Here is how it is done in matlab % connect to ftp f = ftp(host, username, password) mget(f,'dataOnFTP.bin') % read data from file readData = fopen('dataOnFTP.bin', 'r', 'ieee-le') %delete file from server delete(f, 'dataOnFTP.bin'); Here one thing not included is I would like t

[julia-users] Re: [ANN] Nemo 0.5 released

2016-07-27 Thread Patrick Kofod Mogensen
Congrats, and good looking benchmarks you're sporting :) On Tuesday, July 26, 2016 at 11:07:44 PM UTC+2, Bill Hart wrote: > > Hi all, > > We are pleased to release version 0.5 of Nemo, our computer algebra > package written in Julia. > > Instructions on how to get Nemo are on our website: > > ht

Re: [julia-users] Does a wrapper for gmtime exist

2016-07-27 Thread Isaiah Norton
IIUC, the Julia DateTime object represents UT (milli)seconds, and has converters to/from human-readable dates and local time. http://docs.julialang.org/en/release-0.4/manual/dates/ On Wed, Jul 27, 2016 at 9:32 AM, Andrew Gibb wrote: > Hi, > > I'm writing a module for dealing with video timing.

[julia-users] Does a wrapper for gmtime exist

2016-07-27 Thread Andrew Gibb
Hi, I'm writing a module for dealing with video timing. The C++ code I'm using as a basis uses gmtime to convert seconds into y:m:d.etc. Does anyone know if this functionality is exposed in Julia anywhere? I realise I could handle this myself with ccall, I just wanted to check to see if I coul

[julia-users] Embedding Julia - Multiple worker processes

2016-07-27 Thread Chris Cheetham
Hi there, Is it possible to enable multiple worker processes when embedding Julia? I am just trying to get my head around Julia's Parallel Computing and from the docs it is possible to do this via a command argument when starting julia ( -p n ) http://docs.julialang.org/en/release-0.4/manual/p