From 8215ffc8221b0614694c22c89014af2c4460292a Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Tue, 4 Oct 2011 23:36:06 -0700 Subject: [PATCH] rpath all the things! --- src/comp/back/rpath.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/comp/back/rpath.rs b/src/comp/back/rpath.rs index 66a632d61f76..51b7da7fbf67 100644 --- a/src/comp/back/rpath.rs +++ b/src/comp/back/rpath.rs @@ -28,8 +28,7 @@ fn get_rpath_flags(sess: session::session, out_filename: str) -> [str] { let target_triple = sess.get_opts().target_triple; let rpaths = get_rpaths(cwd, sysroot, output, libs, target_triple); - rpaths_to_flags(rpaths); - [] // FIXME: Activate RPATH! + rpaths_to_flags(rpaths) } #[cfg(target_os="win32")]