Jamey Hicks

Results 50 comments of Jamey Hicks

I ran into this problem also. Android has removed ciphers from BC that are redundant with the default security provider: https://android-developers.googleblog.com/2018/03/cryptography-changes-in-android-p.html I have a branch of sshj that works with...

That is excellent news! I am running the main branch now so I could implement a quick fix to the problem. I am planning to use one of the cleanup...

The error is caused by the use of __idp from inline asm, such as this line: ` __asm__ ("movq __first_enterp, %%rax" ::: "%rax"); ` If I change it to: `...

I have a feeling that the compilation model has changed and that code and data may be farther apart in address space than in earlier gcc/glibc, causing this relocation to...

Commit a6215a8de4ab09902610e387e06e010d4178554a is my first attempt to fix this. At least it compiles now.

Hi Phil, It turns out the code is not very portable. It uses some inline assembly language that appears to depend on the details of the calling convention, among other...

Awesome! I would be delighted to accept a pull request, or I can make the changes.

This is a good idea -- I will implement it.

What is the difference between verilator -f foo.vc and verilator -F foo.vc? The help message says the first one is handled "relatively".

`bsc` is the Bluespec System Verilog compiler from bluespec.com. It is available for free for academic use. The goal of splitting `fpgamake` out of `connectal` was to make it independent...