Package Details: kicad-git 9.0.0.rc1.r499.gf665760a8e-1

Git Clone URL: https://aur.archlinux.org/kicad-git.git (read-only, click to copy)
Package Base: kicad-git
Description: Electronic schematic and printed circuit board (PCB) design tools
Upstream URL: https://kicad.org/
Licenses: GPL-3.0-or-later
Conflicts: kicad, kicad-bzr
Provides: kicad
Submitter: Chocobo
Maintainer: nickoe
Last Packager: nickoe
Votes: 67
Popularity: 0.000000
First Submitted: 2015-10-08 16:39 (UTC)
Last Updated: 2025-01-07 22:16 (UTC)

Required by (26)

Sources (1)

Latest Comments

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

greyltc commented on 2018-01-19 08:20 (UTC)

please add ngspice to the dependencies list

nickoe commented on 2018-01-18 20:15 (UTC)

@sirus20x6, done.

sirus20x6 commented on 2018-01-18 19:33 (UTC)

can we get -DKICAD_SCRIPTING_ACTION_MENU option on as well? it adds the external plugin menu entry on pcbnew->tools.

Thanks

doragasu commented on 2017-08-22 15:32 (UTC)

I thing @greyltc suggestion is great, ngspice support is a very important feature.

greyltc commented on 2017-08-22 14:37 (UTC) (edited on 2017-08-22 14:39 (UTC) by greyltc)

Could you please build with the following cmake flags: cmake ../.. -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=/usr/lib \ -DBUILD_GITHUB_PLUGIN=ON \ -DKICAD_SCRIPTING=ON \ -DKICAD_SPICE=TRUE \ -DKICAD_USE_OCE=TRUE \ -DOCE_DIR="/opt/oce/lib/oce-0.18" \ -DKICAD_SCRIPTING_MODULES=ON \ -DKICAD_SCRIPTING_WXPYTHON=ON \ -DCMAKE_SKIP_RPATH=TRUE \ -DCMAKE_SKIP_INSTALL_RPATH=TRUE and add ngspice to the deps?

argen14 commented on 2017-07-12 21:56 (UTC)

@nickoe I've just tested it, after removing the workaround by @Andy2 I can still see the 3d models. Thanks.

nickoe commented on 2017-07-12 19:22 (UTC)

I have made a fix, please test it.

nickoe commented on 2017-07-11 22:15 (UTC)

It seems that you can debug the plugin by setting the environment variable; WXTRACE=3D_PLUGIN_MANAGER.

argen14 commented on 2017-07-10 22:23 (UTC)

Thanks @Andy2 ! It works with your workaround on my setup. For reference, I am using 'kicad-git' package.

Andy2 commented on 2017-07-10 22:00 (UTC)

I found a workaround for the missing 3D shapes: mkdir -p ~/.kicad/plugins ln -s /usr/lib/kicad/plugins/3d ~/.kicad/plugins/3d The reason this works is, that in /usr/lib/kicad/plugins/3d are three shared objects responsible for rendering the shapes depending on their formats. I straced kicad and had a look what it does and I saw this: stat("/usr/usr/lib/kicad/plugins/3d", 0x7ffdeed2bf70) = -1 ENOENT (No such file or directory) stat("/home/andy/.kicad/plugins/3d", 0x7ffdeed2bf70) = -1 ENOENT (No such file or directory) There is a /usr too much in the search path it tries initially. I don't know why and how it got there. The symlink in your user-directory makes it work temporarily, that's at least a workaround until we figure out why the search path is wrong. Note: I'm using kicad-step-git instead of kicad-git, but that shouldn't play a role.