diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-06-03 18:03:02 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-06-03 18:03:15 (GMT) |
commit | 8406d818fcb2a511b1e4264a10fd9069ec020d72 (patch) | |
tree | 9cc7eff8411bde002a42f07d0d1bc3422c2c0982 /BuildTools | |
parent | ff2981a586c5ec3cb6fc1925f5d58e38302d1fed (diff) | |
download | swift-8406d818fcb2a511b1e4264a10fd9069ec020d72.zip swift-8406d818fcb2a511b1e4264a10fd9069ec020d72.tar.bz2 |
Don't link against dl.
If this breaks Mac OS X compilation, we should do a platform check.
Diffstat (limited to 'BuildTools')
-rw-r--r-- | BuildTools/SCons/SConstruct | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BuildTools/SCons/SConstruct b/BuildTools/SCons/SConstruct index 67d60de..7967499 100644 --- a/BuildTools/SCons/SConstruct +++ b/BuildTools/SCons/SConstruct @@ -248,8 +248,8 @@ if conf.CheckLib("z") : else : env["ZLIB_BUNDLED"] = True -if conf.CheckLib("dl") : - env.Append(LIBS = ["dl"]) +#if conf.CheckLib("dl") : +# env.Append(LIBS = ["dl"]) if conf.CheckLib("c") : env.Append(LIBS = ["c"]) |