blubee

Results 15 comments of blubee

sorry to bump an old issue but @thijz said the UI doesn't scale at all unless they decide to redo the UI. Could it be redone with something like QT5?

When I run DRAWEXE I get segfault, here's a gdb backtrace ```shell (gdb) r Starting program: /usr/local/bin/DRAWEXE (gdb) Program received signal SIGSEGV, Segmentation fault. 0x0000000807034d08 in vtable for __cxxabiv1::__si_class_type_info ()...

Thank you @luzpaz can you close this issue after the new app images are available?

> @yurivict : `*arpack.h*` are installed only if you `./configure --enable-icb`. Without `--enable-icb`, arpack-ng is pure fortran (means no .h/hpp) Is this option exposed through cmake?

> Fa sure. In the `CMakeLists.txt` you can see > > ``` > option(ICB "Enable support for *[ae]upd_c with ISO_C_BINDING" OFF) > ``` > and later it is installed with...

> @teamblubee : didn't even know about flang ! :D Did you try `FCFLAGS="-c" cmake -DICB=ON ..; make` I did try setting that env variable but it's a no go....

> Did you try `CMAKE_Fortran_FLAGS="-c" cmake ..; make` and / or add "-c" with ccmake ? I tried fiddling with cmake for a while, it didn't work and I cannot...

I ran into this issue, even with hostspot ``` sudo update-alternatives --config java There are 2 choices for the alternative java (providing /usr/bin/java). Selection Path Priority Status ------------------------------------------------------------ 0 /usr/lib/jvm/adoptopenjdk-11-hotspot-amd64/bin/java...

I've forked the flang project to implement FreeBSD features, but I recently ran into these issues. I tried pulling in your recent changes: https://github.com/teamblubee/flang/commit/f574a7509193d16fd2f6794f3f8c23ecc0c16a67 and built against that. The error...

I edited the CMakeLists.txt for libpgmath/lib/amd64 like this: ```shell list(APPEND DEFINITIONS _GNU_SOURCE _ISOC99_SOURCE) if(${CMAKE_SYSTEM_NAME} MATCHES "Linux") list(APPEND DEFINITIONS _GNU_SOURCE) elseif(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD") list(APPEND _POSIX_C_SOURCE=200809L) # https://stackoverflow.com/questions/5582211/what-does-define-gnu-source-imply list(APPEND _XOPEN_SOURCE=700) # Hopefully...