Created
October 12, 2017 09:31
-
-
Save sirkha/345bcd432d9160f0076df61930360da9 to your computer and use it in GitHub Desktop.
Attempt at getting gem5 scons working on nixos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
env = Environment() | |
env.Append(LIBPATH=['/nix/store/dv2p4mp8fyk7kxv3nk4s0vrl89ch4j5z-python-2.7.13/lib']) | |
dict = env.Dictionary() | |
libpaths = dict['LIBPATH'] | |
for p in libpaths: | |
print p | |
print env.Dump() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment