[fbt-commit] SF.net SVN: fbt:[92] trunk/bin/synplify_wrapper.py
Status: Beta
Brought to you by:
dave_infj
|
From: <dav...@us...> - 2010-04-13 16:53:24
|
Revision: 92
http://fbt.svn.sourceforge.net/fbt/?rev=92&view=rev
Author: dave_infj
Date: 2010-04-13 16:53:18 +0000 (Tue, 13 Apr 2010)
Log Message:
-----------
add support for "advisories"
Modified Paths:
--------------
trunk/bin/synplify_wrapper.py
Modified: trunk/bin/synplify_wrapper.py
===================================================================
--- trunk/bin/synplify_wrapper.py 2010-04-12 16:55:42 UTC (rev 91)
+++ trunk/bin/synplify_wrapper.py 2010-04-13 16:53:18 UTC (rev 92)
@@ -79,6 +79,10 @@
def translate_log( log ):
(type, code, file, lno, msg) = log
+ # "Advisory" messages are warnings
+ if type == 'A':
+ type = 'W'
+
# Promote/demote messages
if code in to_null: return None
if code in to_note: type = 'N'
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|