How to get VS.NET addin working for the new RVCT for BREW 3.0 | developer.brewmp.com How to get VS.NET addin working for the new RVCT for BREW 3.0 | developer.brewmp.com

Developer

How to get VS.NET addin working for the new RVCT for BREW 3.0

Forums:

I 've writen a simple HelloWorld program.
The compilation, and link using GNU compiler and tested successfully on a Motorola phone, with the mak file created from Brew VS.Net addin.

However, when i got the RVTC for Brew 3.0, the VS.NET addin cannot work with simple clicks. It complains about file not found. i figure out it was the space char within the path in console was not supported.

so i go ahead and write a batch performing the same task, content is listed below

@echo off
cd dc
echo "compiling..."
armcc -W -DDYNAMIC_APP --cpu ARM7TDMI --apcs /ropi/interwork/norwpi --littleend -c -Ospace -O2 "C:\Program Files\BREW 3.1.5\sdk\src\AEEAppGen.c" -o AEEAppGen.o -I"C:\Program Files\BREW 3.1.5\sdk\inc"
armcc -W -DDYNAMIC_APP --cpu ARM7TDMI --apcs /ropi/interwork/norwpi --littleend -c -Ospace -O2 "C:\Program Files\BREW 3.1.5\sdk\src\AEEModGen.c" -o AEEModGen.o -I"C:\Program Files\BREW 3.1.5\sdk\inc"
armcc -W -DDYNAMIC_APP --cpu ARM7TDMI --apcs /ropi/interwork/norwpi --littleend -c -Ospace -O2 dc.c -o dc.o -I. -I"C:\Program Files\BREW 3.1.5\sdk\inc"
echo "linking..."
armlink AEEAppGen.o AEEModGen.o dc.o -o dc.elf --ropi --rwpi --entry 0x8000 --first AEEMod_Load
elf2mod.exe -output dc.mod dc.elf
cd ..
@echo on

and i obtained the following outputs:

"compiling..."
"linking..."
Warning: L6914W: option ropi ignored when using --reloc.
Warning: L6914W: option rwpi ignored when using --reloc.
Finished: 0 information, 2 warning and 0 error messages.
elf2mod: Created dc.mod

Everything seems fine until i upload the application onto a phone(Motorolar Razz V3m) i got an "Unknown Error (33554468)"

What went wrong in this batch.

B.T.W. does currently the GNU compiler support any floating point operations?

Please Help/ :confused:
Thank you :p