Package Details: gmsh 4.13.1-1

Git Clone URL: https://aur.archlinux.org/gmsh.git (read-only, click to copy)
Package Base: gmsh
Description: An automatic 3D finite element mesh generator with pre and post-processing facilities
Upstream URL: https://gmsh.info
Licenses: GPL-2.0-or-later
Submitter: S1G1
Maintainer: gborzi (carlosal1015, gpettinello)
Last Packager: carlosal1015
Votes: 62
Popularity: 0.070289
First Submitted: 2006-04-04 23:31 (UTC)
Last Updated: 2024-05-25 16:15 (UTC)

Sources (3)

Latest Comments

« First ‹ Previous 1 .. 9 10 11 12 13 14 15 16 17 18 19 .. 21 Next › Last »

gborzi commented on 2016-07-19 20:31 (UTC)

@jancici hdf5 is needed by med, and med needs hdf5 version 1.8 to work properly. Or you can try a different approach, which is the one I use and works fine for me. Compile med with hdf5 version 1.10 using the patch that I made available here http://pastebin.com/WpUsW9uL (and the other patches). Then you will have gmsh compiled with working MED support without the need to downgrade to hdf 1.8.

jancici commented on 2016-07-19 20:12 (UTC)

I am not able to start gmsh because it fail to load shared libraries libhdf5.so.10. I need to downgrad hdf5 to 1.8.17-1 {https://archive.archlinux.org/packages/h/hdf5_18/} Please, can someone solve it? thank you

pizzooid commented on 2016-06-08 15:06 (UTC)

Please add https://aur.archlinux.org/packages/hdf5-1.8 as a dependency

fredericva commented on 2016-05-17 13:29 (UTC)

Compilation fails with GCC 6, but the Debian guys already have a (trivial) patch: Description: Fix narrow conversion error with GCC-6 Author: Anton Gladky <gladk@debian.org> Bug-Debian: https://bugs.debian.org/811792 Last-Update: 2016-01-30 Index: gmsh-2.12.0-source/Fltk/FlGui.cpp =================================================================== --- gmsh-2.12.0-source.orig/Fltk/FlGui.cpp +++ gmsh-2.12.0-source/Fltk/FlGui.cpp @@ -370,7 +370,7 @@ FlGui::FlGui(int argc, char **argv) // nothing to do here #else fl_open_display(); - static char gmsh32x32[] = { + static unsigned char gmsh32x32[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x01, 0x00, 0x00, 0x40, 0x03, 0x00, 0x00, 0x40, 0x03, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00, 0x10, 0x0f, 0x00, 0x00, 0x10, 0x0f, 0x00, 0x00, 0x08, 0x1f, 0x00, @@ -384,7 +384,7 @@ FlGui::FlGui(int argc, char **argv) 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00}; graph[0]->getWindow()->icon ((const char*)XCreateBitmapFromData(fl_display, DefaultRootWindow(fl_display), - gmsh32x32, 32, 32)); + (char*)(gmsh32x32), 32, 32)); #endif graph[0]->getWindow()->show(argc >0 ? 1 : 0, argv);

mickele commented on 2016-05-13 22:49 (UTC)

After hdf5 upgrade to 1.10 gmsh doesn't create valid med file. Downgrading to hdf5-1.8 solves the problem. So I created a package hdf5-1.8 available at https://aur.archlinux.org/packages/hdf5-1.8. med and gmsh must be modified to link to hdf5-1.8. PKGBUILD of med-salome links to hdf5-1.8 . To link gmsh to hdf5-1.8 I added line -DHDF5_LIB=/opt/hdf5-1.8/lib/libhdf5.so \ to cmake command

gborzi commented on 2016-05-03 11:45 (UTC)

After the hdf5 upgrade the package needs to be recompiled.

mickele commented on 2016-03-30 08:48 (UTC)

@gborzi Thanks for your help. In the meantime I sent a message to gmsh mailing list asking for suggestions.