Homebrew [Release] CTRXplorer - Open Source SD File Manager

  • Thread starter d0k3
  • Start date
  • Views 136,632
  • Replies 273
  • Likes 46

UranusDarkness

I hate this world
Member
Joined
Jan 1, 2016
Messages
306
Trophies
0
Location
My house
XP
272
Country
Italy
Why when I try to compile CTRXplorer I get this error?
4ny73WU.png
 

d0k3

3DS Homebrew Legend
OP
Member
Joined
Dec 3, 2004
Messages
2,786
Trophies
1
XP
3,896
Country
Germany
Where does it go? (location and what folder) :)

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

Because "make install" doesn't work for me

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

Ehm... okay xD
KoDfEWe.png
Update your libctru or go back to an earlier (known stable) release.
 

d0k3

3DS Homebrew Legend
OP
Member
Joined
Dec 3, 2004
Messages
2,786
Trophies
1
XP
3,896
Country
Germany
Thank! I'll look into this.

I think that the error is citrus. Can you try to send me a compiled version of "picasso" (not the latest release but a build from the latest commit) please?
Picasso is not required, afaik. It is also a Python script, so no compiling necessary. Do you get an error message about it?
 
  • Like
Reactions: hobbledehoy899

UranusDarkness

I hate this world
Member
Joined
Jan 1, 2016
Messages
306
Trophies
0
Location
My house
XP
272
Country
Italy
Thank! I'll look into this.


Picasso is not required, afaik. It is also a Python script, so no compiling necessary. Do you get an error message about it?
When I try to compile CTRXplorer I get the same message
KoDfEWe.png

But I think that the error is citrus, because the path is C:\Users\Matthias (and my nick is uranu)
And when I compile citrus I get the error:
h21neF5.png
 

d0k3

3DS Homebrew Legend
OP
Member
Joined
Dec 3, 2004
Messages
2,786
Trophies
1
XP
3,896
Country
Germany
When I try to compile CTRXplorer I get the same message
KoDfEWe.png

But I think that the error is citrus, because the path is C:\Users\Matthias (and my nick is uranu)
And when I compile citrus I get the error:
h21neF5.png
Try this cleaned up citrus package. Try with 'make install'.
https://up1.ca/#5nUWpcLDVI0oQH-yKJlHAg

Providing the installed package is not a good idea, as it may lead to conflicts within your devkitArm package.
 

DjoeN

Captain Haddock!
Member
Joined
Oct 21, 2005
Messages
5,489
Trophies
0
Age
54
Location
Somewhere in this potatoland!
Website
djoen.dommel.be
XP
2,857
Country
Belgium
Read up here and get the AIO.bat
https://gbatemp.net/threads/release...-1-batch-file-for-compiling-3ds-stuff.427577/

@UranusDarkness
Here's a build of latest libctru and latest citrus: (i use this to build all @d0k3 tools)
- Make a backup of your old libctru folder in c:\devkitPro\
- Make a folder called "libctru" and unzip the zip in there
- You should have "c:\devkitpro\libctru\include\" and "c:\devkitpro\libctru\lib\" with various files in it

(This includes libctru, citrus, citro3d, hbkb, sf2dlib, sfdlib)

[If it still doesn't build, then there's something wrong with your devkitpro stuff (be sure to use latest)
 
Last edited by DjoeN,
  • Like
Reactions: d0k3 and Madridi

DjoeN

Captain Haddock!
Member
Joined
Oct 21, 2005
Messages
5,489
Trophies
0
Age
54
Location
Somewhere in this potatoland!
Website
djoen.dommel.be
XP
2,857
Country
Belgium
@d0k3

Can't build CTRXplorer if you start a clean github clone (buildtools error):
Code:
Checking connectivity... done.
fatal: reference is not a tree: e55cae262dd5d0e516d14d770e1aaee99bf6244f
Unable to checkout 'e55cae262dd5d0e516d14d770e1aaee99bf6244f' in submodule path 'buildtools'
Building...
Makefile:55: buildtools/make_base: No such file or directory
make: *** No rule to make target `buildtools/make_base'.  Stop.
Makefile:55: buildtools/make_base: No such file or directory
make: *** No rule to make target `buildtools/make_base'.  Stop.
I use this batch script to compile:
Code:
@echo off
Title = Building CTRXplorer...
cls
%~d0
cd %~dp0
if exist "CTRXplorer" (
    echo Making a backup of your current CTRXplorer folder
    xcopy "CTRXplorer\*" "Backups_Compiles\Backup_CTRXplorer" /e /i /y >nul
    cls
    cd CTRXplorer
    Title = Building CTRXplorer ^(Update^)...
    echo Updating repo...
    git pull origin master
    git submodule update --init --recursive
) else (
    Title = Building CTRXplorer ^(Clone^)...
    echo Cloning repo...
    git clone --recursive https://github.com/d0k3/CTRXplorer.git
    cd CTRXplorer
)
echo Building...
Title = Building CTRXplorer ^(Clean^)...
make clean
Title = Building CTRXplorer ^(Release^)...
make
Title = Building CTRXplorer ^(Done^)
echo.
echo ##################################################
cd %~dp0
color A
echo Done. Files are in the "CTRXplorer/output" folder.
echo.
echo Press any key to continue ...
Pause >nul
exit

---------------------------

But when i gitclone buildtools manually (or add 2 lines to the batch script it builds fine):

Code:
@echo off
Title = Building CTRXplorer...
cls
%~d0
cd %~dp0
if exist "CTRXplorer" (
    echo Making a backup of your current CTRXplorer folder
    xcopy "CTRXplorer\*" "Backups_Compiles\Backup_CTRXplorer" /e /i /y >nul
    cls
    cd CTRXplorer
    Title = Building CTRXplorer ^(Update^)...
    echo Updating repo...
    git pull origin master
    git submodule update --init --recursive
) else (
    Title = Building CTRXplorer ^(Clone^)...
    echo Cloning repo...
    git clone --recursive https://github.com/d0k3/CTRXplorer.git
    cd CTRXplorer
)
echo Building...
rmdir buildtools /s /q
git clone --recursive https://github.com/Steveice10/buildtools.git
Title = Building CTRXplorer ^(Clean^)...
make clean
Title = Building CTRXplorer ^(Release^)...
make
Title = Building CTRXplorer ^(Done^)
echo.
echo ##################################################
cd %~dp0
color A
echo Done. Files are in the "CTRXplorer/output" folder.
echo.
echo Press any key to continue ...
Pause >nul
exit

---------------------------

The same error happens in A9NC
 
Last edited by DjoeN,

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • K3Nv2 @ K3Nv2:
    Nearly 4 hours without power :(
  • Veho @ Veho:
    SO POWERLESS
  • K3Nv2 @ K3Nv2:
    Tell Kanye I need power
  • DinohScene @ DinohScene:
    Better start running in your hamster wheel
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    Meth addicts on a treadmill connected to a generator "Unlimited POWER!!!'
  • Veho @ Veho:
    Before or after a hit?
    +1
  • Veho @ Veho:
    Do you dangle a baggie in front of them, like a carrot?
    +1
  • The Real Jdbye @ The Real Jdbye:
    they're the same thing
    +1
  • The Real Jdbye @ The Real Jdbye:
    i like that idea
    +1
  • Veho @ Veho:
    What's the same thing?
    +1
  • The Real Jdbye @ The Real Jdbye:
    before or after a hit
    +1
  • Veho @ Veho:
    Nah, a hit gives them mad meth powers, but makes them more difficult to control.
    +1
  • Veho @ Veho:
    Before a hit they're like zombies, persistent but slow.
    +1
  • Veho @ Veho:
    It's a tradeoff.
    +1
  • The Real Jdbye @ The Real Jdbye:
    no i mean, before a hit is after the previous hit
    +1
  • The Real Jdbye @ The Real Jdbye:
    if you keep them well enough fed, it's the same thing
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    By the power of Florida Man, I have the power!!! *Lifts up meth pipe* Meth Man!!! lol
  • BakerMan @ BakerMan:
    Guys, I just learned my little brother is in the hospital because he had a seizure last night.
  • cearp @ cearp:
    Sorry to hear that BakerMan
    +2
  • BakerMan @ BakerMan:
    Just found out he's doing alright, doing a lot of complaining too, rightfully so. Who wouldn't complain after having a seizure and being hospitalized?
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    Glad he is OK and complaining is cool :)
    +1
  • K3Nv2 @ K3Nv2:
    Yeah been there had that no fun
    +1
  • K3Nv2 @ K3Nv2:
    They'll give him sleep studies eegs and possibly one week hospital stay
    K3Nv2 @ K3Nv2: They'll give him sleep studies eegs and possibly one week hospital stay