From 85d95bab0f01476e1dcab10ad06b6258a7dc9f8c Mon Sep 17 00:00:00 2001 From: Cristian Cadar Date: Sun, 22 Mar 2015 16:58:35 +0000 Subject: Fix compilation under MacOS, see https://github.com/klee/klee/issues/219 for details. --- Makefile.rules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.rules b/Makefile.rules index 5e954adf..20e19e26 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -486,9 +486,9 @@ endif ifeq ($(HOST_OS),Darwin) DARWIN_VERSION := `sw_vers -productVersion` # Strip a number like 10.4.7 to 10.4 - DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/') + DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]+).*/\1/') # Get "4" out of 10.4 for later pieces in the makefile. - DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/') + DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]+).*/\1/') SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined,suppress \ -dynamiclib -- cgit 1.4.1