summaryrefslogtreecommitdiff
path: root/scripts/check_link_map.py
AgeCommit message (Collapse)Author
2017-01-12scripts: Explicitly call out python2David Brown
At least one Linux distribution (Arch) has made python 3 the default interpreter, and Debian and Ubuntu have expressed a desire to eventually make this the case. As such, invoking 'python' or '/usr/bin/python' will possibly run python 3 instead of version 2. Distributions have included a 'python2' link for quite some time now, and given that we have some scripts that require python 3, we should be explicit about those that require python 2. In addition, be more consistent about how python is invoked, preferring the: #!/usr/bin/env python2 construct rather than a hardcoded path to python. This allows the user to have an alternative python in their path that will be used in preference to the system provided version. Jira: ZEP-1548 Change-Id: I125c2af808dc268f74277bc97a092df3acad23c0 Signed-off-by: David Brown <david.brown@linaro.org>
2016-10-15check_link_map: Removing unsuported python version.Sonia Leon Bautista
Zephyr uses python 2.7 by default. Phython3 is breaking windows build. Change-Id: Id0fdbdce89d63f51a0625f5d1f2f45584ecd4023 Signed-off-by: Sonia Leon Bautista <sonia.leon.bautista@intel.com>
2016-10-05check_link_map: rewrite in pythonAndy Ross
Oops, turns out that we don't require perl in all our build environments. Rewrite this script (it's tiny) in Python. Exactly the same logic. Change-Id: Icbf4b36ef0b18fca94d54fc7fe5e47343c55c669 Signed-off-by: Andy Ross <andrew.j.ross@intel.com>