News:

Registration is only required if you want to post, and is not needed to read any posts. To avoid excess 'spam' accounts, all accounts where no posts have been made will be deleted after two weeks. Please register again if you wish to post.

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - elir71

#16
Environment models / Re: World Model Creation
July 13, 2022, 08:37:38 AM
import.exe

is there some way of passing the file to import.exe other than dropping the input file onto it ?

the reason is, im using linux exclusively and the windows emulator does not support the drag and drop onto .exe

either that, is there another way of converting .asc to a .bmp
#17
Environment models / Re: .f32 heightmap creation
July 11, 2022, 03:12:50 PM
In fedora 36, the current version i am using then installing the image package on octave does not seen to work using the pkg command withing octave's own "commanline"

I've tried this however from the linux commandline

sudo dnf makecache
sudo dnf install octave-image.x86_64

#18
Development / Re: Compiling Linux Fedora 34
July 08, 2022, 07:53:24 AM
I looked at the BIOS settings and there was no hardware acceleration.  Much improved since enabling that
#19
Development / Re: Compiling Linux Fedora 34
July 06, 2022, 07:04:07 PM
I've a three screen system each running an upto date fedora 36 and latest bridgecommand compiled from source

the middle screen (master station) feed the port and starboard stations as secondary displays

All hardware is identical, swap identical

for some reaon the starboard display lags far behind the other two

any ideas what i should be looking at
#20
Development / Re: Compiling Linux Fedora 36
July 01, 2022, 07:26:50 AM
For fedora 36 then use the following, note its now libsndfile-devel

sudo dnf install cmake portaudio-devel g++ freeglut-devel irrlicht libXxf86vm-devel libsndfile-devel libXcursor-devel

# goto the bin directory in the source tree

cmake ../src/
make
#21
Development / Re: Compiling Linux Fedora 34
August 03, 2021, 09:33:00 AM



sudo dnf install cmake portaudio-devel g++ freeglut-devel irrlicht libXxf86vm-devel libsndfile1-dev libXcursor-devel

# goto the bin directory in the source tree

cmake ../src/
make
#22
Development / Re: Compiling Linux Fedora 34
November 16, 2020, 03:54:12 PM
the above was solved by compilitng as privileged user.

Now have a problem with  sound
#23
Development / Re: Compiling Linux Fedora 34
November 16, 2020, 12:54:55 PM
I have glibc and glibc-dev installed (or devel )
#24
Development / Compiling Linux Fedora 34
November 16, 2020, 11:33:12 AM
Can anyone give me some pointers on how to get out of this  :---



Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output:
Change Dir: /home/davide/Projects/bc/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/gmake cmTC_89258/fast && /usr/bin/gmake  -f CMakeFiles/cmTC_89258.dir/build.make CMakeFiles/cmTC_89258.dir/build
gmake[1]: Entering directory '/home/davide/Projects/bc/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_89258.dir/src.c.o
/usr/bin/cc   -DCMAKE_HAVE_LIBC_PTHREAD   -o CMakeFiles/cmTC_89258.dir/src.c.o   -c /home/davide/Projects/bc/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_89258
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_89258.dir/link.txt --verbose=1
/usr/bin/cc  -DCMAKE_HAVE_LIBC_PTHREAD    -rdynamic CMakeFiles/cmTC_89258.dir/src.c.o  -o cmTC_89258
/usr/bin/ld: CMakeFiles/cmTC_89258.dir/src.c.o: in function `main':
src.c:(.text+0x2d): undefined reference to `pthread_create'
/usr/bin/ld: src.c:(.text+0x39): undefined reference to `pthread_detach'
/usr/bin/ld: src.c:(.text+0x45): undefined reference to `pthread_cancel'
/usr/bin/ld: src.c:(.text+0x56): undefined reference to `pthread_join'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_89258.dir/build.make:107: cmTC_89258] Error 1
gmake[1]: Leaving directory '/home/davide/Projects/bc/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:141: cmTC_89258/fast] Error 2


Source file was:
#include <pthread.h>

void* test_func(void* data)
{
  return data;
}

int main(void)
{
  pthread_t thread;
  pthread_create(&thread, NULL, test_func, NULL);
  pthread_detach(thread);
  pthread_cancel(thread);
  pthread_join(thread, NULL);
  pthread_atfork(NULL, NULL, NULL);
  pthread_exit(NULL);

  return 0;
}

Determining if the function pthread_create exists in the pthreads failed with the following output:
Change Dir: /home/davide/Projects/bc/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/gmake cmTC_2f8c7/fast && /usr/bin/gmake  -f CMakeFiles/cmTC_2f8c7.dir/build.make CMakeFiles/cmTC_2f8c7.dir/build
gmake[1]: Entering directory '/home/davide/Projects/bc/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_2f8c7.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pthread_create   -o CMakeFiles/cmTC_2f8c7.dir/CheckFunctionExists.c.o   -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_2f8c7
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2f8c7.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pthread_create    CMakeFiles/cmTC_2f8c7.dir/CheckFunctionExists.c.o  -o cmTC_2f8c7  -lpthreads
/usr/bin/ld: cannot find -lpthreads
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_2f8c7.dir/build.make:107: cmTC_2f8c7] Error 1
gmake[1]: Leaving directory '/home/davide/Projects/bc/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:141: cmTC_2f8c7/fast] Error 2


#25
Feature requests & suggestions / Re: Taking bearings
October 25, 2020, 03:10:52 PM
Perhaps Gyro bearing from a crosshair in the binolcular ?  Then you could model checking for gyro error also and the consequences of having a large gyro error
#26
Bridge Command General Support / Re: ARPA
March 26, 2020, 04:33:16 PM
just to point out, real radars do have a time delay which you can set and rates of turn etc as they are often very significant in confined waters
#27
sudo dnf install automake
sudo dnf install libtool
autoreconf -vfi
su
./configure && make && make install

still no joy
#28
Ive gone into bc/libs/enet

$ autoreconf -vfi

autoreconf: 'configure.ac' or 'configure.in' is required

#29
Trying to compile 5.4.5 this morning following errors

In file included from Network.cpp:17
Network.hpp:23:10: fatal error: enetzenet.h: No such file or directory
23 |  #include <enet\enet.h>
compilation terminated

similar for calls from NetworkPrimary and NetworkSecondary
#30
Models / models file formats for irrlicht
February 15, 2020, 06:21:04 PM
is it only .x files that are acceptable as model file format or are there others ?