Discussion Board
-
VC++ project file not created
2003-07-17, 06:00
#1
Registered User
I am developing on win2k professional (notes that it is not fully tested)
Try to make a VC++ project file for Helloworld (the example come with SDK1.2). So run the following 2 commands
1) bldmake bldfiles
2) abld makefile vc6
The first command was run successfully which create make files for all platform in a build directory.
When I run the second command, it returns
\Symbian\6.1\Series60\EPOC32\BUILD\SYMBIAN\6.1\SERIES60\EPOC32EX\HELLOWORLD\VC6.make:6: *** missing separator. Stop.
I am suspecting the vc6.make file was missing something, but I have no idea what is missing. Anyone experience the samething before ?
Then I hack into vc6.make to change the following
!if "$(OS)" == "Windows_NT"
ERASE = @erase 2>>nul
!else
ERASE = @erase
!endif
into one line
ERASE = @erase 2>>nul
However, I run the second command again, and still cannot get VC++ project file created. Is it created somewhere I didn't notice? or is it a bug?
-
Super Contributor
I did the same thing in my place, but I did not see your errors. Have your set up the following things correctly?
1) EPOCROOT
2) VC environment (path)
3) SDK environment (path)
Liuxg
Forum Nokia
==============================================
C:\Symbian\6.1\Series60\Series60Ex\HelloWorld\group>bldmake bldfiles
C:\Symbian\6.1\Series60\Series60Ex\HelloWorld\group>m
C:\Symbian\6.1\Series60\Series60Ex\HelloWorld\group>abld makefile vc6
nmake -nologo -f "\Symbian\6.1\Series60\EPOC32\BUILD\SYMBIAN\6.1\SERIES60\SERI
ES60EX\HELLOWORLD\GROUP\VC6.make" MAKEFILE VERBOSE=-s
perl -S makmake.pl -D \SYMBIAN\6.1\SERIES60\SERIES60EX\HELLOWORLD\GROUP\
HELLOWORLD VC6
==============================================
-
Registered User
You must install the SDK in C(May be your system driver).
and all your project must in the same driver of your SDK(C of course).then that will be ok.
I Meet this problem before.and i think this will solve your problem!
Good Luck.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules