From 64f8efdce055f337b06a7bd2f37eca54de6f877b Mon Sep 17 00:00:00 2001 From: Hans Fugal Date: Thu, 25 May 2006 22:37:11 +0000 Subject: [PATCH] OS X Compile fix to work around the circular dependency of libardour and libardour_cp, using -undefined suppress -flat_namespace. git-svn-id: svn://localhost/trunk/ardour2@534 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/SConscript b/libs/ardour/SConscript index cb5c810b3c..6d90af8c0c 100644 --- a/libs/ardour/SConscript +++ b/libs/ardour/SConscript @@ -215,7 +215,7 @@ if env['FPU_OPTIMIZATION']: if env['DIST_TARGET'] == "x86_64": arch_specific_objects = env.SharedAsmObject('sse_functions_64bit.os', 'sse_functions_64bit.s') -libardour = ardour.SharedLibrary('ardour', ardour_files + extra_sources + arch_specific_objects) +libardour = ardour.SharedLibrary('ardour', ardour_files + extra_sources + arch_specific_objects, LINKFLAGS='-undefined suppress -flat_namespace') Default(libardour)