public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [MELT] Fix MELT breakage at build
@ 2011-08-05 13:32 Alexandre Lissy
  2011-08-05 13:33 ` [PATCH] Fix regression with unexistent symbol 'fullbinfile' Alexandre Lissy
  0 siblings, 1 reply; 2+ messages in thread
From: Alexandre Lissy @ 2011-08-05 13:32 UTC (permalink / raw)
  To: gcc-patches; +Cc: gcc-melt

Hello,

Following is a trivial patch patch that fixes build of the current
melt-branch, due to some previous commit changing identifier
"fullbinfile" to "binbase" in function parameters but not in some usages
at the end of the function.

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH] Fix regression with unexistent symbol 'fullbinfile'
  2011-08-05 13:32 [MELT] Fix MELT breakage at build Alexandre Lissy
@ 2011-08-05 13:33 ` Alexandre Lissy
  0 siblings, 0 replies; 2+ messages in thread
From: Alexandre Lissy @ 2011-08-05 13:33 UTC (permalink / raw)
  To: gcc-patches; +Cc: gcc-melt, Alexandre Lissy

[-- Attachment #1: Type: text/plain, Size: 212 bytes --]


This symbol has been changed to binbase a couple of commits ago, yet
some places remained untouched for the new name.
---
 gcc/melt-runtime.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Fix-regression-with-unexistent-symbol-fullbinfile.patch --]
[-- Type: text/x-patch; name="0001-Fix-regression-with-unexistent-symbol-fullbinfile.patch", Size: 972 bytes --]

diff --git a/gcc/melt-runtime.c b/gcc/melt-runtime.c
index 32a4288..ad49ccb 100644
--- a/gcc/melt-runtime.c
+++ b/gcc/melt-runtime.c
@@ -5044,13 +5044,13 @@ melt_run_make_for_plugin (const char*ourmakecommand, const char*ourmakefile, con
     melt_fatal_error ("MELT module compilation failed for command %s", cmdstr);
   cmdstr = NULL;
   obstack_free (&cmd_obstack, NULL); /* free all the cmd_obstack */
-  debugeprintf ("melt_run_make_for_plugin meltplugin did built fullbinfile %s", 
-		fullbinfile);
-  if (IS_ABSOLUTE_PATH (fullbinfile))
-    inform (UNKNOWN_LOCATION, "MELT plugin has built module %s", fullbinfile);
+  debugeprintf ("melt_run_make_for_plugin meltplugin did built binbase %s", 
+		binbase);
+  if (IS_ABSOLUTE_PATH (binbase))
+    inform (UNKNOWN_LOCATION, "MELT plugin has built module %s", binbase);
   else
     inform (UNKNOWN_LOCATION, "MELT plugin has built module %s in %s",
-	    fullbinfile, mycwd);
+	    binbase, mycwd);
   return;
 }
 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-08-05 13:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-05 13:32 [MELT] Fix MELT breakage at build Alexandre Lissy
2011-08-05 13:33 ` [PATCH] Fix regression with unexistent symbol 'fullbinfile' Alexandre Lissy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).