This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~/Documents/no-backup/julia/base$ lldb -- ../usr/bin/julia-debug --build x sysimg.jl | |
Current executable set to '../usr/bin/julia-debug' (x86_64). | |
(lldb) break set -n jl_throw | |
Breakpoint 1: no locations (pending). | |
WARNING: Unable to resolve breakpoint to any actual locations. | |
(lldb) r | |
Process 10078 launched: '../usr/bin/julia-debug' (x86_64) | |
1 location added to breakpoint 1 | |
exports.jl | |
base.jl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module XORShift | |
import Base.rand | |
type XORShiftStar1024 <: AbstractRNG | |
p::Int | |
state::Vector{Uint64} | |
end | |
XORShiftStar() = XORShiftStar1024(1, rand(Uint64, 16)) |
OlderNewer