changed Darwin build configs to use Clang as default

This commit is contained in:
Guenter Obiltschnig 2012-11-10 17:41:52 +01:00
parent 76cb799819
commit 2a0dcd1785
6 changed files with 112 additions and 72 deletions

View File

@ -1,77 +1,12 @@
#
# $Id: //poco/1.4/build/config/Darwin#5 $
# $Id: //poco/1.4/build/config/Darwin#6 $
#
# Darwin
#
# Build settings for Mac OS X 10.6 (GCC 4.2)
# The build settings defined in this file are compatible
# with XCode 3.2.5 C++ projects.
# Build settings for Mac OS X 10.6 or newer, using Clang.
#
# NOTE: This build configuration will build 64-bit binaries.
# Use the Darwin32 build configuration to build 32-bit binaries.
#
#
# General Settings
#
LINKMODE ?= SHARED
POCO_TARGET_OSARCH ?= x86_64
POCO_HOST_OSARCH := $(POCO_TARGET_OSARCH)
ARCHFLAGS ?= -arch $(POCO_TARGET_OSARCH)
#
# Tools
#
CC = gcc
CXX = g++
LINK = $(CXX) -bind_at_load
LIB = libtool -static -o
RANLIB = ranlib
SHLIB = $(CXX) -dynamiclib -o $@
DYLIB = $(CXX) -dynamic -bundle -bind_at_load -o $@
SHLIBLN = $(POCO_BASE)/build/script/shlibln
STRIP =
DEP = $(POCO_BASE)/build/script/makedepend.gcc
SHELL = sh
RM = rm -rf
CP = cp
MKDIR = mkdir -p
#
# Extension for Shared Libraries
#
SHAREDLIBEXT = .$(target_version).dylib
SHAREDLIBLINKEXT = .dylib
#
# Compiler and Linker Flags
#
CFLAGS = $(ARCHFLAGS)
CXXFLAGS = $(ARCHFLAGS) -Wall -Wno-sign-compare
LINKFLAGS = $(ARCHFLAGS)
SHLIBFLAGS = $(ARCHFLAGS)
DYLIBFLAGS = $(ARCHFLAGS)
STATICOPT_CC =
STATICOPT_CXX =
STATICOPT_LINK =
SHAREDOPT_CC = -fPIC
SHAREDOPT_CXX = -fPIC
SHAREDOPT_LINK =
DEBUGOPT_CC = -O0 -g -gdwarf-2 -D_DEBUG=$(DEBUGLEVEL)
DEBUGOPT_CXX = -O0 -g -gdwarf-2 -D_DEBUG=$(DEBUGLEVEL) -mfix-and-continue -fvisibility-inlines-hidden -fasm-blocks
DEBUGOPT_LINK =
RELEASEOPT_CC = -DNDEBUG -Os
RELEASEOPT_CXX = -DNDEBUG -Os -fvisibility-inlines-hidden -fasm-blocks
RELEASEOPT_LINK =
#
# System Specific Flags
#
SYSFLAGS = -DPOCO_HAVE_IPv6
#
# System Specific Libraries
#
SYSLIBS = -ldl
include $(POCO_BASE)/build/config/Darwin-clang

77
build/config/Darwin-gcc Normal file
View File

@ -0,0 +1,77 @@
#
# $Id: //poco/1.4/build/config/Darwin-gcc#1 $
#
# Darwin
#
# Build settings for Mac OS X 10.6 (GCC 4.2)
# The build settings defined in this file are compatible
# with XCode 3.2.5 C++ projects.
#
# NOTE: This build configuration will build 64-bit binaries.
# Use the Darwin32 build configuration to build 32-bit binaries.
#
#
# General Settings
#
LINKMODE ?= SHARED
POCO_TARGET_OSARCH ?= x86_64
POCO_HOST_OSARCH := $(POCO_TARGET_OSARCH)
ARCHFLAGS ?= -arch $(POCO_TARGET_OSARCH)
#
# Tools
#
CC = gcc
CXX = g++
LINK = $(CXX) -bind_at_load
LIB = libtool -static -o
RANLIB = ranlib
SHLIB = $(CXX) -dynamiclib -o $@
DYLIB = $(CXX) -dynamic -bundle -bind_at_load -o $@
SHLIBLN = $(POCO_BASE)/build/script/shlibln
STRIP =
DEP = $(POCO_BASE)/build/script/makedepend.gcc
SHELL = sh
RM = rm -rf
CP = cp
MKDIR = mkdir -p
#
# Extension for Shared Libraries
#
SHAREDLIBEXT = .$(target_version).dylib
SHAREDLIBLINKEXT = .dylib
#
# Compiler and Linker Flags
#
CFLAGS = $(ARCHFLAGS)
CXXFLAGS = $(ARCHFLAGS) -Wall -Wno-sign-compare
LINKFLAGS = $(ARCHFLAGS)
SHLIBFLAGS = $(ARCHFLAGS)
DYLIBFLAGS = $(ARCHFLAGS)
STATICOPT_CC =
STATICOPT_CXX =
STATICOPT_LINK =
SHAREDOPT_CC = -fPIC
SHAREDOPT_CXX = -fPIC
SHAREDOPT_LINK =
DEBUGOPT_CC = -O0 -g -gdwarf-2 -D_DEBUG=$(DEBUGLEVEL)
DEBUGOPT_CXX = -O0 -g -gdwarf-2 -D_DEBUG=$(DEBUGLEVEL) -mfix-and-continue -fvisibility-inlines-hidden -fasm-blocks
DEBUGOPT_LINK =
RELEASEOPT_CC = -DNDEBUG -Os
RELEASEOPT_CXX = -DNDEBUG -Os -fvisibility-inlines-hidden -fasm-blocks
RELEASEOPT_LINK =
#
# System Specific Flags
#
SYSFLAGS = -DPOCO_HAVE_IPv6
#
# System Specific Libraries
#
SYSLIBS = -ldl

View File

@ -1,5 +1,5 @@
#
# $Id: //poco/1.4/build/config/Darwin32#1 $
# $Id: //poco/1.4/build/config/Darwin32#2 $
#
# Darwin32
#
@ -11,4 +11,4 @@
ARCHFLAGS = -arch i386
POCO_TARGET_OSARCH = i386
include $(POCO_BASE)/build/config/Darwin
include $(POCO_BASE)/build/config/Darwin-clang

14
build/config/Darwin32-gcc Normal file
View File

@ -0,0 +1,14 @@
#
# $Id: //poco/1.4/build/config/Darwin32-gcc#1 $
#
# Darwin32
#
# Build settings for Mac OS X 10.5/10.6 (GCC 4.0.1), 32-bits
# The build settings defined in this file are compatible
# with XCode 3.1 C++ projects.
#
ARCHFLAGS = -arch i386
POCO_TARGET_OSARCH = i386
include $(POCO_BASE)/build/config/Darwin

View File

@ -1,5 +1,5 @@
#
# $Id: //poco/1.4/build/config/Darwin64#1 $
# $Id: //poco/1.4/build/config/Darwin64#2 $
#
# Darwin64
#
@ -11,4 +11,4 @@
ARCHFLAGS = -arch x86_64
POCO_TARGET_OSARCH = x86_64
include $(POCO_BASE)/build/config/Darwin
include $(POCO_BASE)/build/config/Darwin-clang

14
build/config/Darwin64-gcc Normal file
View File

@ -0,0 +1,14 @@
#
# $Id: //poco/1.4/build/config/Darwin64-gcc#1 $
#
# Darwin64
#
# Build settings for Mac OS X 10.5/10.6 (GCC 4.0.1), 64-bits
# The build settings defined in this file are compatible
# with XCode 3.1 C++ projects.
#
ARCHFLAGS = -arch x86_64
POCO_TARGET_OSARCH = x86_64
include $(POCO_BASE)/build/config/Darwin