Ticket #227 (new defect)

Opened 5 years ago

Last modified 12 months ago

CIREN_Install: ALF errors

Reported by: jmatzen Owned by: shereef
Priority: minor Milestone: Abeyance
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

Changed 5 years ago 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.

Changed 5 years ago by bhilburn

  • milestone set to CIREN Waveform

Changed 5 years ago by bhilburn

  • owner changed from cdietric to shereef

Changed 12 months ago by c2dietric

  • milestone changed from CIREN Waveform to Abeyance

Milestone CIREN Waveform deleted

Note: See TracTickets for help on using tickets.