public inbox for systemtap@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] add default "/usr/bin:/bin" after $PATH
@ 2020-05-15  6:28 Chunmei Xu
  2020-05-15  6:57 ` Chunmei Xu
  0 siblings, 1 reply; 2+ messages in thread
From: Chunmei Xu @ 2020-05-15  6:28 UTC (permalink / raw)
  To: smakarov; +Cc: systemtap

my use case is like this, I install gcc-4.8.5 and devtoolset-9-gcc,
while I set the PATH by "source /opt/rh/devtoolset-9/enable" to use
gcc-9, but when I use "stap test.stap", I always get compile errors
for "gcc: error: unrecognized command line option
‘-fpatchable-function-entry=2’", the option
‘-fpatchable-function-entry=2’ is not supported by gcc-4.8.5 but
supported by gcc-9.
The stap process building always use gcc-4.8.5 from /usr/bin not from
the first path of PATH.
As I think the default /usr/bin:/bin should be added after $PATH.

Signed-off-by: Chunmei Xu <xuchunmei@linux.alibaba.com>
---
 buildrun.cxx | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/buildrun.cxx b/buildrun.cxx
index 12abe78..371da96 100644
--- a/buildrun.cxx
+++ b/buildrun.cxx
@@ -95,13 +95,14 @@ run_make_cmd(systemtap_session& s, vector<string>& make_cmd,
 static vector<string>
 make_any_make_cmd(systemtap_session& s, const string& dir, const string& target)
 {
-  string newpath("PATH=/usr/bin:/bin");
+  string newpath("PATH=");
   const char *oldpath = getenv("PATH");
   if (oldpath != NULL)
     {
-      newpath += ':';
       newpath += oldpath;
+      newpath += ':';
     }
+  newpath += "/usr/bin:/bin";
 
   vector<string> make_cmd
     {
-- 
1.8.3.1


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

end of thread, other threads:[~2020-05-15  6:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-15  6:28 [PATCH] add default "/usr/bin:/bin" after $PATH Chunmei Xu
2020-05-15  6:57 ` Chunmei Xu

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).