Cristian Le

Results 725 comments of Cristian Le

~~Found the issue it was the port being blocked on the default gateway. Opening it and fixing the port solved the issue.~~ Edit: I was mistakenly still using the `local`...

I've found that `udp` is deprecated. I am trying to use the new standard with `udpport`. I hope the new interface will lead to less problems. There are many changes...

`udp` will be removed from R2021a. So yeah should switch to `udpport` format. Well, we could do both: tcp for registration and udp for update. The reliability on the registration...

@dikleins Is it a cmake configuration, autotools or something else? I think most tests are done around cmake and there I can use the breakpoints (with cmake handling the flags)....

Hmm, can you share a small mwe for that?

Sorry, Minimum Working Example. Just confirm what Makefile causes that with a program file like: ```fortran program hello print *, 'Hello, World!' end program hello ```

Don't know if it is helpful, but there are some problems with jumping from one language to another where the breakpoint becomes misaligned. It still breaks at the correct part,...

Hi @loriab, I have some comments about the design, but I think they will be better addressed after this one is merged. Basically some of the ideas are in https://github.com/LecrisUT/CMake-Template/pull/1,...

I think the decision would depend on how much the subproject is designed to be a subproject vs a standalone project. If it's the latter, I would agree that the...

> We could give user the option of building/running the compiler at configure time, but that seems fragile as well. That seems similar to things that I've done on [`fypp`](https://github.com/aradi/fypp/pull/28/files#diff-596e5008f61a102e76c56394cda92747f836cce43620836bf97838608c482e24R76-R124)...