Homebrew I'm desperate

Thank you. However, I still get nothing with the echo command.
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.
 
google how to save environment variables on osx it's not that hard. If the path is right then running those export commands in a terminal will set it for the session. If you want to set it for all sessions you need it in your shell. Actually.. for this you might as well just add it to /etc/paths
 
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.
Sometest did come out for the echo.

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

I love OS X but its a pain in the ass for developers.
 
Sometest did come out for the echo.
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
 
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
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.
 
OSX is great for developers, the problem is you have no idea what you are doing in a posix environment
 
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.
 
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.
No problem, actually I should sleep already.
Let me know whatever progress you have or how can I help you.
 
No problem, actually I should sleep already.
Let me know whatever progress you have or how can I help you.
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 in

here is there error: http://bronzeflames.deviantart.com/art/Capture-559425454?ga_submit_new=10%3A1441894950
 
In windows I had to restart the computer (I think log out and in would have worked) after setting path variables to get things to pick them up, maybe try that?
 
I don't even know where shader_vsh_shbin.h is though.

Try adding this to your Makefile:

Code:
#---------------------------------------------------------------------------------
%_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
 

Site & Scene News

Popular threads in this forum