You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had some trouble x-compiling hammer, pkg-config was giving me the 'glib-2.0.pc' not found. I'm not really sure what env variable got lost or how it did, but a friend helped me fix it with the following patch :
--- hammer-1.0.0-rc3.orig/SConstruct 2014-04-14 00:55:56.000000000 +0200
+++ hammer-1.0.0-rc3/SConstruct 2015-09-16 16:10:37.523867180 +0200
@@ -98,7 +98,7 @@
env.Replace(CC="clang",
CXX="clang++")
-env["ENV"].update(x for x in os.environ.items() if x[0].startswith("CCC_"))
+env["ENV"].update(x for x in os.environ.items())
#rootpath = env['ROOTPATH'] = os.path.abspath('.')
#env.Append(CPPPATH=os.path.join('#', "hammer"))
The text was updated successfully, but these errors were encountered:
I had some trouble x-compiling hammer, pkg-config was giving me the 'glib-2.0.pc' not found. I'm not really sure what env variable got lost or how it did, but a friend helped me fix it with the following patch :
The text was updated successfully, but these errors were encountered: