Fix for bug 2283 (RVCT 4.0 support is missing from PDK 3.0.h)
Have multiple extension sections in the bld.inf, one for each version
of the compiler. The RVCT version building the tools will build the
runtime libraries for its version, but make sure we extract all the other
versions from zip archives. Also add the archive for RVCT4.
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of the License "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
//
#include <stdio.h>
#include <stdlib.h>
extern void ProcessAllTrace(unsigned (*aInput)(void* aBuffer, unsigned aMaxSize),int aReportLevel);
FILE* InFile = 0;
unsigned GetTraceData(void* aBuffer, unsigned aMaxSize)
{
return fread(aBuffer, 1, aMaxSize, InFile);
}
char* ThisProgram = "BTRACE";
int Help()
{
printf("Usage: %s [options] file\n",ThisProgram);
printf("Options:\n");
printf(" -a<level> Set analysis level, 0 = brief summary, 1 = full summary,\n");
printf(" 2 = condensed trace dump, 3 = full trace dump (DEFAULT)\n");
printf("\nTHIS TOOL IS UNOFFICIAL, UNSUPPORTED AND SUBJECT TO CHANGE WITHOUT NOTICE!\n");
return 1;
}
int main(int argc, char** argv)
{
int reportLevel = 99;
InFile = 0;
ThisProgram = argv[0];
int nextArg=0;
for(;;)
{
++nextArg;
if(nextArg>=argc)
{
fprintf(stderr,"Missing input file\n");
return Help();
}
if(argv[nextArg][0]!='-')
break; // not option
if(argv[nextArg][1]=='a')
{
reportLevel = strtoul(argv[nextArg]+2,0,10);
continue;
}
fprintf(stderr,"Unknown option: %s\n",argv[nextArg]);
return Help();
}
InFile = fopen(argv[nextArg],"rb");
if(!InFile)
{
fprintf(stderr,"Can't open input file '%s'\n",argv[nextArg]);
return Help();
}
ProcessAllTrace(GetTraceData,reportLevel);
fclose(InFile);
return 0;
}