Homebrew Citra - Unofficial \ Chinese builds discussion

tet666

Well-Known Member
Member
Joined
Oct 17, 2003
Messages
152
Trophies
2
XP
473
Country
Gambia, The
Ok thx. But i don t sure which exe better speed? avx or sse 4.1?


AVX is the newer instruction it should be faster, in practice you probably won't really notice a difference but it doesn't hurt using the best option available if your cpu supports it
 

dxgocho

Active Member
Newcomer
Joined
Nov 18, 2016
Messages
38
Trophies
0
Age
34
XP
362
Country
Ecuador
Nice car!, also helps with all the nice features / merges it has to offer too! - gamepad / 3d level est

I feel by testing with msvs2015 re-update build, could push the speed up a little more as it could go max, then try and get update rebuild with mingw.

I would like to try and build it his way, but kid stopping over and on my PC most of the time, while i get his laptop lol's

I got Zelda ALBW back, but will have to try it later.

Hi nice build, Pokemon ORAS work in that build? I cant make it work, after intro it stay in black screen!

I already used user folder
 

drwhojan

Well-Known Member
Member
Joined
Jul 14, 2009
Messages
4,196
Trophies
1
Age
45
Location
Where I Am!
XP
1,702
Country
United Kingdom
I'm following this guide,
Code:
https://github.com/citra-emu/citra/wiki/Building-For-Windows
but of course there is more..
after this command:
Code:
pacman -S mingw-w64-x86_64-qt5 mingw-w64-x86_64-SDL2 mingw-w64-x86_64-cmake git
issue these commands:
Code:
pacman -S make
pacman -S gcc
pacman -S mingw-w64-x86_64-gcc
pacman -S mingw-w64-x86_64-boost
then just follow official guide
after succeed with this
Code:
cmake -G "MSYS Makefiles" -DCMAKE_BUILD_TYPE=Release ..
type
Code:
make
Wow.. thank you very much..

Any pacman for the openGW ?, edit your main Cmakelist.txt might have it.
VF1tfht.jpg
 
Last edited by drwhojan,

Darkestnoir

Member
Newcomer
Joined
Nov 18, 2016
Messages
24
Trophies
0
Age
34
XP
68
Country
Gambia, The
Citra-GCCKU By Dampih-24.10.2016
http://www75.zippyshare.com/v/yR0u67EH/file.html

(Note) You will need to replace your own "User" folder
Fixed all needed was missing .dll files.

Untested until re-get the games.

Thanks for the build but i every time in the intro sequence from Pokemon Sun/Moon (at the house) the emulator freezes. Log file is attached.

My system:
Code:
Windows 10 Pro 64-Bit - build 14393
Intel i7 3770k @ 4.2 GHz
AMD HD 7970 with Crimson 16.11.4 driver
32GB DDR3 Ram
 

Attachments

  • log.txt
    850.9 KB · Views: 315
Last edited by Darkestnoir,

Dampih

Well-Known Member
Newcomer
Joined
Sep 26, 2008
Messages
70
Trophies
1
XP
241
Country
United States
Glad it's working for everyone:D
Mini-Tutorial for compiling with MSYS2 / MinGW /GCC
My specification
Code:
Windows 10 64bit 1607 build 1493.477
i5 3570k @4.2ghz
8 GB DDR3
gtx 1060 6gb Latest Driver

1. Download MSYS2 64bit
Code:
 http://repo.msys2.org/distrib/x86_64/msys2-x86_64-20161025.exe
install to drive C
Code:
C:\msys64

2. Go to C:\msys64 then open msys2.exe
3. Type these commands:
Code:
pacman -Sy pacman
pacman -Syu
pacman -Su
close msys2.exe

4. Go to C:\msys64 then open mingw64.exe
5. Type these commands:
Code:
pacman -S mingw-w64-x86_64-qt5
pacman -S mingw-w64-x86_64-SDL2
pacman -S mingw-w64-x86_64-cmake
pacman -S git
pacman -S gcc
pacman -S mingw-w64-x86_64-gcc
pacman -S mingw-w64-x86_64-boost
pacman -S mingw-w64-x86_64-make
pacman -S make
pacman -S base-devel
close mingw64.exe

6. Assume there is no error from step 1-5,
- right-click on Windows Start Button
- click system > advanced system settings > environments variables
- on System variables window, choose "Path" > Edit
- Click New > type on new line: C:\msys64\mingw64\bin
- Click OK > Ok > ok :D

7. Go to C:\msys64 then open mingw64.exe again
5. Type these commands:
Code:
git clone --recursive https://github.com/Jhno591/citra
cd citra
mkdir build && cd build
cmake -G "MSYS Makefiles" -DCMAKE_BUILD_TYPE=Release ..
make
I hope it helps :)
 
Last edited by Dampih,

Darkestnoir

Member
Newcomer
Joined
Nov 18, 2016
Messages
24
Trophies
0
Age
34
XP
68
Country
Gambia, The
Glad it's working for everyone:D
Mini-Tutorial for compiling with MSYS2 / MinGW /GCC
My specification
Code:
Windows 10 64bit 1607 build 1493.477
i5 3570k @4.2ghz
8 GB DDR3
gtx 1060 6gb Latest Driver

1. Download MSYS2 64bit
Code:
 http://repo.msys2.org/distrib/x86_64/msys2-x86_64-20161025.exe
install to drive C
Code:
C:\msys64

2. Go to C:\msys64 then open msys2.exe
3. Type these commands:
Code:
pacman -Sy pacman
pacman -Syu
pacman -Su
close msys2.exe

4. Go to C:\msys64 then open mingw64.exe
5. Type these commands:
Code:
pacman -S mingw-w64-x86_64-qt5
pacman -S mingw-w64-x86_64-SDL2
pacman -S mingw-w64-x86_64-cmake
pacman -S git
pacman -S gcc
pacman -S mingw-w64-x86_64-gcc
pacman -S mingw-w64-x86_64-boost
pacman -S mingw-w64-x86_64-make
pacman -S make
pacman -S base-devel
close mingw64.exe

6. Assume there is no error from step 1-5,
- right-click on Windows Start Button
- click system > advanced system settings > environments variables
- on System variables window, choose "Path" > Edit
- Click New > type on new line: C:\msys64\mingw64\bin
- Click OK > Ok > ok :D

7. Go to C:\msys64 then open mingw64.exe again
5. Type these commands:
Code:
git clone --recursive https://github.com/Jhno591/citra
cd citra
mkdir build && cd build
cmake -G "MSYS Makefiles" -DCMAKE_BUILD_TYPE=Release ..
make
I hope it helps :)
Tried this but got the same problem with my own build...
 

archblitz

New Member
Newbie
Joined
Nov 19, 2016
Messages
1
Trophies
0
XP
42
Country
I'm new here, I was testing the citra-qt-gcc-avx build included in the Dampih build and I noticed about an 1 fps drop every 45 seconds.
I started at 45 fps outside a PC and now its just 30 after 10 mins of idle. Thanks :bow: It's a great build.

Edit: It's really fast, at first. Maybe it's a kind of memory leak?

Specs:
GPU GTX 1080 newest driver
CPU: i5 6600k
RAM: 16GB
Drive Location SSD
 
Last edited by archblitz,

sellh03

New Member
Newbie
Joined
Nov 19, 2016
Messages
1
Trophies
0
Age
34
XP
42
Country
United States
I'm new here, I was testing the citra-qt-gcc-avx build included in the Dampih build and I noticed about an 1 fps drop every 45 seconds.
I started at 45 fps outside a PC and now its just 30 after 10 mins of idle.

Edit: It's really fast, at first. Maybe it's a kind of memory leak?

Specs:
GPU GTX 1080 newest driver
CPU: i5 6600k
RAM: 16GB
Drive Location SSD

Hello,

Also new here, just wanted to say Dampih, this is the best build of Citra I have played, thank you to all of the contributors and your hard work.

Just to specify a little more, I noticed the fps drop as well. Using AMD card, seems to only happen on Pokemon Sun though, as i was playing Bravely Second before and the fps was stable. (The emulator does still unexpectedly crash though while in any dungeon map).

I took a snapshot of the log: seems like HW.GPU <critical> video_core/renderer_opengl/gl_shader_gen.cpp:App endsource :58: Unhandled texture type 1 errors build up. This topic is beyond me though, if I had to guess it would be that my graphics card is not compatible and errors are building up (?).

38WYRKOiKcDz4abPH_N4qCCsegPRpBDH-cbuYTcjsxoN60-cpIP33Xu3pzOiy9RpNcSLqdPHlVRnZ28k66FuXkeA31hmay9wrfgG5pfWIrE0lDsnwEaP5hgqSJWlcPlB7X3MbWRRhCbbUbwx-_hD2d5cX9HnC0AyXwedXvGd3LA6D4X4iBqWdxoeqVDCcelo3XHeBCsNHXsp2W9_5IEOFvTpPoH3mMBvugEP7DNJxi_XWWkBTjHoBfVs0JDgelQOkLofltlEr7gmNTyLS57-WfIvvRyLlL0GZwoECfbJe_6IU_lFko9MfzI_hAF19yd6Na7lP-S1WflYHWE2_b67KjufCHKUQP8IthFWlFnwj4D9cT7qN7kA_rFIPYdWiEdSlUcmVc6q4aYkg0hMM7yDIuOtbKB4KmMik5T36cyAEHYqabE0hteOtaGPDSB3VVo1XPVjxUGphMA_g1RjvfolPGN_5R9WeBLZ0vRE6aBfTYJ_yVmU6t9MDbbbgu6gTlWwtbysD0xSXiIWB-brzgu_kMHaaRSAVprp6CXRD0OEScJfI6Qq1smmQ4lAfIigFcz-zm7nnd_b6Q7bXg_jDVjhtbw_SrgHuORM3wAedlXjGTji28Cl6_D4T_CgqwwMGRW2I8N0Zu-zvg3Z_JNzRJzWdl43HkDltPjC5Vsxo0PVXEgFoEnindavBM3qMQQRlReyy5EgLuFtn3SC=w1919-h918-l75-ft
 
  • Like
Reactions: archblitz

X Virus

Well-Known Member
Member
Joined
Jan 15, 2016
Messages
757
Trophies
0
Age
23
XP
158
Country
Malaysia
did anyone got passed the end of pokemon league after defeating professor? im having black screen after the fight when he's going to record my victory

You cannot have more than 3 pokemons in your party if you want to skip that blackscreen error,so,pick 3 of your favourite/stongest mons to enter the battle with Prof Kukui

--------------------- MERGED ---------------------------

Actually is any version of citra able to run pokemon sun/moon?and it seems that we can only use at most 3 pokemons?

3 mons only for aviod the blackscreen error after the last battle against Prof Kukui ,actually you can use more than 3 in whole game before that match ......ERM, i understand your question ,what you means is : if you train 6 mons from beginning until elite 4 but at the end you just bring only 3 mons then it is pointless right? Anyway,sadly to say there is no build of citra can fix that bug,maybe in coming months citra Dev will solve it.Sorry maybe i not help you but actually i don't think you need 6 parties of mons to beat him ,some guys even use only 1 mons to beat him as well............
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • No one is chatting at the moment.
    SylverReZ @ SylverReZ: https://www.youtube.com/watch?v=sGClRsx0x64