Package Details: citra-qt-git r9774.43cedf59a-1

Git Clone URL: https://aur.archlinux.org/citra-git.git (read-only, click to copy)
Package Base: citra-git
Description: An experimental open-source Nintendo 3DS emulator/debugger
Upstream URL: https://github.com/citra-emu/citra/
Licenses: GPL2
Submitter: ceri
Maintainer: HurricanePootis
Last Packager: HurricanePootis
Votes: 76
Popularity: 0.62
First Submitted: 2014-05-01 08:32 (UTC)
Last Updated: 2023-09-15 22:57 (UTC)

Required by (0)

Sources (35)

Latest Comments

1 2 3 4 5 6 .. 10 Next › Last »

Funkin-Stoopid commented on 2023-08-07 14:31 (UTC)

Hello I have some errors during build https://pastebin.com/YCfDrWyw

Neko-san commented on 2023-07-28 20:56 (UTC)

The package_citra-git() function needs to be updated to support your $_debug flag:

package_citra-git() {
    depends+=('sdl2')

    if [ $_debug = "false" ]; then
        install -Dm755 "$srcdir/build/bin/Release/citra" "$pkgdir/usr/bin/citra"
    else
        install -Dm755 "$srcdir/build/bin/Debug/citra" "$pkgdir/usr/bin/citra"
    fi
}

svallinn commented on 2023-07-09 14:43 (UTC) (edited on 2023-07-10 10:07 (UTC) by svallinn)

If you're gonna use an external boost, you're gonna need to add the libbacktrace-git package to the make dependencies, since we don't normally have those headers available and that will fail the build.

noabody commented on 2023-05-08 00:56 (UTC)

FYI: Build fails when package robin-map is installed on system. It's an upstream issue of some sort. robin-map isn't really used by anything that I can see. Probably easier to just remove it.

CMake Error at src/video_core/CMakeLists.txt:130 (target_link_libraries):
  Target "video_core" links to:

    tsl::robin_map

  but the target was not found.  Possible reasons include:

    * There is a typo in the target name.
    * A find_package call is missing for an IMPORTED target.
    * An ALIAS target is missing.

archang commented on 2023-04-26 21:13 (UTC)

The lastest commit has changed the URL of submodule SoundTouch to https://codeberg.org/soundtouch/soundtouch.git

marc00077 commented on 2023-04-18 18:43 (UTC)

Thanks!

HurricanePootis commented on 2023-04-17 03:07 (UTC)

@marc00077 I fixed it

marc00077 commented on 2023-04-16 23:43 (UTC) (edited on 2023-04-16 23:46 (UTC) by marc00077)

Build fails for me with the following error: In file included from /home/xxxx/citra-git/src/citra/externals/dynarmic/src/dynarmic/backend/block_range_information.cpp:6: /home/xxxx/citra-git/src/citra/externals/dynarmic/src/dynarmic/../dynarmic/backend/block_range_information.h:12:10: fatal error: tsl/robin_set.h: No such file or directory 12 | #include <tsl/robin_set.h> | ^~~~~~~~~~~~~~~~~

Tested without using aur wrappers. Any ideas?