- Joined
- Jun 29, 2007
- Messages
- 8,830
- Solutions
- 2
- Reaction score
- 11,771
- Trophies
- 3
- Age
- 43
- Location
- Niedersachsen
- XP
- 12,778
- Country

Well, your work will be appreciated.Im doing Osu! for 3ds my friend

Well, your work will be appreciated.Im doing Osu! for 3ds my friend

Hey, How do I save and exit out of nano. I've never done this before.Well, your work will be appreciated.

Cmd+O savesHey, How do I save and exit out of nano. I've never done this before.

CMD O opens a file browser windows prompting me to open a file. Not save.Cmd+O saves
Cmd+X exits
(IIRC)

Sorry, it is CTRL+O and CTRL+X (Oh, Mac... always confuses me)CMD O opens a file browser windows prompting me to open a file. Not save.

Thank you. However, I still get nothing with the echo command.Sorry, it is CTRL+O and CTRL+X (Oh, Mac... always confuses me)

That is totally weird...Thank you. However, I still get nothing with the echo command.

Sometest did come out for the echo.That is totally weird...
Actually, if you export something and call for it without closing the Terminal it SHOULD be still there.
Try the following in a terminal:
export SOMEVARIABLE=sometest
echo $SOMEVARIABLE
If you don't get the value sometest echoed I don't know what is wrong.

Well, then check that you are for sure in your home folder.Sometest did come out for the echo.

Can you wait till morning? I had a very busy day today. Spent 3hrs in a car 1hr of that I was motion sick, Had to wait a extra 2hrs for a doctors appointment and on top of all that I had school.Well, then check that you are for sure in your home folder.
Do the following in the terminal:
cd
nano .profile
Then add all this together:
export DEVKITPRO=/checkThisIsTheCorrectpath/to/devkitPro
export DEVKITARM=${DEVKITPRO}/devkitARM
export SOMEVARIABLE=sometest
(save CTRL+O, close CTRL+X)
Close your terminal, open another terminal and check:
echo $DEVKITPRO
echo $DEVKITARM
echo $SOMEVARIABLE
I will do exactly the same on my side.
Just checked, it works on this side:
imac:~ swa$ echo $DEVKITPRO
/checkThisIsTheCorrectpath/to/devkitPro
imac:~ swa$ echo $DEVKITARM
/checkThisIsTheCorrectpath/to/devkitPro/devkitARM
imac:~ swa$ echo $SOMEVARIABLE
sometest

I will try it though as soon as i get up. Then i'll give you the results.Well, then check that you are for sure in your home folder.
Do the following in the terminal:
cd
nano .profile
Then add all this together:
export DEVKITPRO=/checkThisIsTheCorrectpath/to/devkitPro
export DEVKITARM=${DEVKITPRO}/devkitARM
export SOMEVARIABLE=sometest
(save CTRL+O, close CTRL+X)
Close your terminal, open another terminal and check:
echo $DEVKITPRO
echo $DEVKITARM
echo $SOMEVARIABLE
I will do exactly the same on my side.
Just checked, it works on this side:
imac:~ swa$ echo $DEVKITPRO
/checkThisIsTheCorrectpath/to/devkitPro
imac:~ swa$ echo $DEVKITARM
/checkThisIsTheCorrectpath/to/devkitPro/devkitARM
imac:~ swa$ echo $SOMEVARIABLE
sometest

No problem, actually I should sleep already.Can you wait till morning? I had a very busy day today. Spent 3hrs in a car 1hr of that I was motion sick, Had to wait a extra 2hrs for a doctors appointment and on top of all that I had school.

That is also true xDOSX is great for developers, the problem is you have no idea what you are doing in a posix environment

I'm sorry i do apperaite everything you do it is just to hard for me to do this on osx. I'm going to have to stick to windows so I got started on images and I tried to compile the lib2d library for 3ds when i make/make install i get the same error. I do not know where to find the file or if i do where to even put it inNo problem, actually I should sleep already.
Let me know whatever progress you have or how can I help you.

I don't even know where shader_vsh_shbin.h is though.You have to put the header shader_vsh_shbin.h in the same directory than libsf2d/source/sf2d.c

I don't even know where shader_vsh_shbin.h is though.
#---------------------------------------------------------------------------------
%_vsh.h %.vsh.o : %.vsh
#---------------------------------------------------------------------------------
@echo $(notdir $<)
@python $(AEMSTRO)/aemstro_as.py $< ../$(notdir $<).shbin
@bin2s ../$(notdir $<).shbin | $(PREFIX)as -o $@
@echo "extern const u8" `(echo $(notdir $<).shbin | sed -e 's/^\([0-9]\)/_\1/' | tr . _)`"_end[];" > `(echo $(notdir $<).shbin | tr . _)`.h
@echo "extern const u8" `(echo $(notdir $<).shbin | sed -e 's/^\([0-9]\)/_\1/' | tr . _)`"[];" >> `(echo $(notdir $<).shbin | tr . _)`.h
@echo "extern const u32" `(echo $(notdir $<).shbin | sed -e 's/^\([0-9]\)/_\1/' | tr . _)`_size";" >> `(echo $(notdir $<).shbin | tr . _)`.h
@rm ../$(notdir $<).shbin