Ticket #227 (new defect)

Opened 2 months ago

Last modified 2 weeks ago

CIREN_Install: ALF errors

Reported by: jmatzen Assigned to: shereef
Priority: minor Milestone: CIREN Waveform
Component: ALF Version:
Keywords: Cc:

Description

There is no documentation stating that loadAutomationFile.py currently has to be copied from the src directory (ossie-0.6.x/tools/alf) to /sdr/tools/alf. Python Profiler also needs to be installed (apt-get install python-profiler) in order to get ALF running. This may be a combination of documentation mods that are needed as well as build files that may need to be updated.

Change History

08/02/08 12:49:39 changed by DrewCormier

CProfile is available in many Python versions, while profile is much more common. I think that the "import cProfile as profile" and "import profile" statements should be moved out of the existing try statement. An easy way to resolve this is to add something like:

try:

import cProfile as profile # if Python supports cProfile

except:

import profile # if not, use the more standard profile module

Either will work. cProfile just produces slightly better results in certain applications.

Alternatively, you can just use profile all the time, and let the people who want to use the less standard cProfile change the code themselves.

09/21/08 13:40:03 changed by bhilburn

  • milestone set to CIREN Waveform.

09/24/08 14:55:47 changed by bhilburn

  • owner changed from cdietric to shereef.