Package Details: xc3sprog-svn 0.r795-1

Git Clone URL: https://aur.archlinux.org/xc3sprog-svn.git (read-only, click to copy)
Package Base: xc3sprog-svn
Description: Utilities for programming Xilinx FPGAs, CPLDs, and EEPROMs with the Xilinx Parallel Cable and other JTAG adapters
Upstream URL: http://xc3sprog.sourceforge.net
Licenses: GPL2
Conflicts: xc3sprog
Provides: xc3sprog
Submitter: uffe
Maintainer: uffe
Last Packager: uffe
Votes: 6
Popularity: 0.000025
First Submitted: 2013-11-24 23:11 (UTC)
Last Updated: 2021-08-02 16:15 (UTC)

Latest Comments

1 2 3 Next › Last »

systemofapwne commented on 2021-08-02 15:37 (UTC)

There seems to be a problem in bitfile.cpp and srecfile.cpp when compiling this package. The error is simply "error: reference to ‘byte’ is ambiguous". The reason is a namespace pollution: The c++ files use "using namespace std" in the global namespace and the headers have a typedef for "byte". However in C++17, the type "std::byte" has been introduced, so the custom typedef clashes with the imported std namespace.

Solution: Add the following argument to the cmake statement in the PKGBUILD to limit the C++ standard to C++11.

-DCMAKE_CXX_STANDARD=11

nobodywasishere commented on 2021-02-16 23:25 (UTC)

Can you push libftd2xx as an optional dependency for some devices? It's currently unmaintained (and proprietary) and afaik only required for some devices.

xiretza commented on 2020-01-18 15:28 (UTC)

I have adopted the package and fixed the PKGBUILD, let me know if anything else is amiss. Unfortunately the links posted by @t3kk3n don't work anymore (they're over three years old after all), so no support for the Tiao for now.

airwoodix commented on 2019-12-04 15:20 (UTC) (edited on 2019-12-04 15:21 (UTC) by airwoodix)

Would it make sense to add subversion as make dependency?

ubuntourist commented on 2019-09-23 17:58 (UTC) (edited on 2020-01-17 14:54 (UTC) by ubuntourist)

Really?

Failed to commit transaction:
conflicting files:
xc3sprog-svn: /usr/local/share/man already exists in filesystem

Um, yes: Surprisingly enough, xc3sprog is not the only application on my computer, and those other applications have man pages in... guess which directory. ;-)

orson commented on 2018-06-19 09:38 (UTC)

Gentle bump for the changes proposed by vogelchr.

t3kk3n commented on 2016-08-02 01:37 (UTC)

Modified PKGBUILD for recent changes, plus added patch for the Tiao USB Multi-Programmer - https://gist.github.com/t3kk3n/bac09881b0252e463b05adfc868f9ba8 Patch file - https://gist.github.com/t3kk3n/3fe86c3cb1f331b9fefeca482cf4968a

vogelchr commented on 2015-12-19 20:54 (UTC)

Please add the following changes to the PKGBUILD: cmake -DCMAKE_INSTALL_PREFIX=/usr .. [instead of /usr/local] and install -Dm0644 xc3sprog.1 "$pkgdir/usr/share/man/man1/xc3sprog.1" [instead of /usr/local/share/man...].

csantosb commented on 2015-12-17 10:31 (UTC)

Removing /usr/local by /usr does it for me.

p90 commented on 2015-12-15 09:59 (UTC)

Hello, got the package to compile on my x64 machine (subversion was missing from the makedepends but I am unsure if subversion is in the base-devel) but pacman -U package yield: "xc3sprog-svn: /usr/local/share/man existiert im Dateisystem" so there is a file conflict with /usr/local/share/man I guess I can just force the installation but I think this should not happen.