From 2bbbcf60de2a91c8d0a9bde3752e616f5eb5daa7 Mon Sep 17 00:00:00 2001 From: mark Date: Tue, 13 Sep 2016 08:58:00 +0200 Subject: [PATCH] COMP: CGAL rules should use lib64/ (fixes #234) - 64-bit builds of gcc/mpfr/gmp use lib64/ for their installation path. Use this for the wmake rules as well. --- wmake/rules/General/CGAL | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wmake/rules/General/CGAL b/wmake/rules/General/CGAL index 354e719aa4..4bade675a2 100644 --- a/wmake/rules/General/CGAL +++ b/wmake/rules/General/CGAL @@ -5,8 +5,8 @@ CGAL_INC = \ -I$(BOOST_ARCH_PATH)/include CGAL_LIBS = \ - -L$(MPFR_ARCH_PATH)/lib \ - -L$(GMP_ARCH_PATH)/lib \ + -L$(MPFR_ARCH_PATH)/lib$(WM_COMPILER_LIB_ARCH) \ + -L$(GMP_ARCH_PATH)/lib$(WM_COMPILER_LIB_ARCH) \ -L$(BOOST_ARCH_PATH)/lib \ -L$(CGAL_ARCH_PATH)/lib \ -lCGAL \