search for: macosx_deployment_target

Displaying 20 results from an estimated 24 matches for "macosx_deployment_target".

2009 Jan 14
2
[LLVMdev] quick q configuring osx
.../Developer/SDKs/MacOSX10.4u.sdk/'. > > There are some comments in llvm/Makefile.rules that can help, Note that you don't have to use 10.4 SDK to target Tiger. You just have to set the "macosx version min" (either using the gcc flag - mmacosx-version-min=10.4 or using the MACOSX_DEPLOYMENT_TARGET env var) env MACOSX_DEPLOYMENT_TARGET=10.4 make -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090114/495ea1f3/attachment.html>
2009 Oct 25
2
[LLVMdev] configuring LLVM 2.6 for OSX 10.4sdk on OSX 10.5 system
...a dynamic library embedding LLVM/clang, both against the OSX 10.4 sdk. Long version: I've just tried rebuilding my project using the 2.6 release, using the following commands to try and force LLVM to build against the OSX 10.4 sdk (I am actually doing this on an OS X 10.5.8 system): env MACOSX_DEPLOYMENT_TARGET=10.4 ./configure --enable-targets=x86 -- enable-jit --enable-optimized --enable-pic env MACOSX_DEPLOYMENT_TARGET=10.4 make UNIVERSAL_SDK_PATH=/Developer/ SDKs/MacOSX10.4u.sdk/ This seems to work fine. However, my project is a dynamic library in which LLVM/Clang are embedded for adding runtime...
2009 Jan 14
0
[LLVMdev] quick q configuring osx
Hi, For the record, adding UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/ was insufficient to restrict the .a/.o files to link against the 10.4 sdk, but env MACOSX_DEPLOYMENT_TARGET=10.4 make did the trick. Thanks! On Jan 14, 2009, at 1:29 PM, Jean-Daniel Dupas wrote: > > Le 14 janv. 09 à 21:48, Chris Lattner a écrit : > >> >> On Jan 14, 2009, at 12:44 PM, Graham Wakefield wrote: >> >>> Sorry if this is a newb q... I'm developing an a...
2009 Oct 25
0
[LLVMdev] configuring LLVM 2.6 for OSX 10.4sdk on OSX 10.5 system
...M/clang, both against the OSX 10.4 sdk. > > Long version: > I've just tried rebuilding my project using the 2.6 release, using > the following commands to try and force LLVM to build against the > OSX 10.4 sdk (I am actually doing this on an OS X 10.5.8 system): > > env MACOSX_DEPLOYMENT_TARGET=10.4 ./configure --enable-targets=x86 -- > enable-jit --enable-optimized --enable-pic > env MACOSX_DEPLOYMENT_TARGET=10.4 make UNIVERSAL_SDK_PATH=/Developer/ > SDKs/MacOSX10.4u.sdk/ > > This seems to work fine. > > However, my project is a dynamic library in which LLVM/Clang...
2004 Sep 10
1
xmms-flac plugin in OS X - Apple X11
...d: warning multiple definitions of symbol _locale_charset /sw/lib/libintl.dylib(localcharset.lo) definition of _locale_charset /sw/lib/libiconv.2.dylib(localcharset.lo) definition of _locale_charset ld: warning dynamic shared library: /sw/lib/libgmodule.dylib not made a weak library in output with MACOSX_DEPLOYMENT_TARGET environment variable set to: 10.1 ld: warning dynamic shared library: /sw/lib/libdl.dylib not made a weak library in output with MACOSX_DEPLOYMENT_TARGET environment variable set to: 10.1 ld: warning dynamic shared library: /sw/lib/libintl.dylib not made a weak library in output with MACOSX_DEP...
2004 Sep 10
2
xmms-flac plugin in OS X - Apple X11
I have been using Apple's X11 on OS X and I got the source and compiled flac 1.0.5 beta2. Everything seemed to build and install OK, but the xmms-flac plugin is not working, and I cannot open xmms. I get the following error when I launch xmms from xterm: brian it's 8:41pm, what now? xmms & [1] 567 brian it's 8:41pm, what now? dyld: xmms Undefined symbols:
2013 Nov 11
2
[LLVMdev] [cfe-dev] [Reminder] LLVM 3.4 Release Branching
...> -- Generating done > -- Build files have been written to: /sw/src/fink.build/llvm34-3.4-0/llvm-3.4/build > make -j1 VERBOSE=1 > > The fink build system doesn't set CFLAGS or CXXFLAGS but does set CPPFLAGS to "-I/sw/include" > and LDFLAGS to "-L/sw/lib". MACOSX_DEPLOYMENT_TARGET is set to "10.8" during the build on > darwin12. > If I use... > > cmake -DLLVM_BUILD_32_BITS:BOOL=OFF -DLLVM_TARGETS_TO_BUILD=X86 -DCMAKE_INSTALL_PREFIX=%p/opt/llvm-%v -DLLVM_ENABLE_ASSERTIONS=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_SYSROOT:STRING=/ -DCMAKE_OSX_DEPLOYM...
2009 Jan 14
2
[LLVMdev] quick q configuring osx
Sorry if this is a newb q... I'm developing an application on a 10.5 machine but want to target the 10.4 SDK. Is there a magic incantation for the llvm configure script to set the sysroot path, equivalent to e.g. --with-sysroot "/Developer/SDKs/MacOSX10.4u.sdk"? Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2009 Jan 14
0
[LLVMdev] quick q configuring osx
On Jan 14, 2009, at 12:44 PM, Graham Wakefield wrote: > Sorry if this is a newb q... I'm developing an application on a 10.5 > machine but want to target the 10.4 SDK. Is there a magic > incantation for the llvm configure script to set the sysroot path, > equivalent to e.g. --with-sysroot "/Developer/SDKs/MacOSX10.4u.sdk"? > Try 'make
2013 Nov 11
2
[LLVMdev] [cfe-dev] [Reminder] LLVM 3.4 Release Branching
...cosx-version-min=10.8" flags come from? I don't see them in your >> CMake invocation - perhaps they're added via $CC or $CFLAGS? Is this >> being done on purpose? > > In the llvm-3.4 toplevel Makefile.rules file, I see... > > ifeq ($(HOST_OS),Darwin) > ifdef MACOSX_DEPLOYMENT_TARGET > DARWIN_VERSION := $(MACOSX_DEPLOYMENT_TARGET) > else > DARWIN_VERSION := `sw_vers -productVersion` > endif > # Strip a number like 10.4.7 to 10.4 > DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/') > # Get "4" out of...
2013 Nov 11
0
[LLVMdev] [cfe-dev] [Reminder] LLVM 3.4 Release Branching
...-- Build files have been written to: > /sw/src/fink.build/llvm34-3.4-0/llvm-3.4/build > > make -j1 VERBOSE=1 > > > > The fink build system doesn't set CFLAGS or CXXFLAGS but does set > CPPFLAGS to "-I/sw/include" > > and LDFLAGS to "-L/sw/lib". MACOSX_DEPLOYMENT_TARGET is set to "10.8" > during the build on > > darwin12. > > If I use... > > > > cmake -DLLVM_BUILD_32_BITS:BOOL=OFF -DLLVM_TARGETS_TO_BUILD=X86 > -DCMAKE_INSTALL_PREFIX=%p/opt/llvm-%v -DLLVM_ENABLE_ASSERTIONS=OFF > -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_SY...
2013 Nov 11
0
[LLVMdev] [cfe-dev] [Reminder] LLVM 3.4 Release Branching
...r/SDKs/MacOSX10.8.sdk > -mmacosx-version-min=10.8" flags come from? I don't see them in your > CMake invocation - perhaps they're added via $CC or $CFLAGS? Is this > being done on purpose? In the llvm-3.4 toplevel Makefile.rules file, I see... ifeq ($(HOST_OS),Darwin) ifdef MACOSX_DEPLOYMENT_TARGET DARWIN_VERSION := $(MACOSX_DEPLOYMENT_TARGET) else DARWIN_VERSION := `sw_vers -productVersion` endif # Strip a number like 10.4.7 to 10.4 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/') # Get "4" out of 10.4 for later pieces in the makefi...
2013 Nov 11
0
[LLVMdev] [cfe-dev] [Reminder] LLVM 3.4 Release Branching
...10") -- Configuring done -- Generating done -- Build files have been written to: /sw/src/fink.build/llvm34-3.4-0/llvm-3.4/build make -j1 VERBOSE=1 The fink build system doesn't set CFLAGS or CXXFLAGS but does set CPPFLAGS to "-I/sw/include" and LDFLAGS to "-L/sw/lib". MACOSX_DEPLOYMENT_TARGET is set to "10.8" during the build on darwin12. If I use... cmake -DLLVM_BUILD_32_BITS:BOOL=OFF -DLLVM_TARGETS_TO_BUILD=X86 -DCMAKE_INSTALL_PREFIX=%p/opt/llvm-%v -DLLVM_ENABLE_ASSERTIONS=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_SYSROOT:STRING=/ -DCMAKE_OSX_DEPLOYMENT_TARGET:STRING=&q...
2009 Dec 22
1
[LLVMdev] [PATCH] Cross-compiling LLVM on Mac OS X
>> Daniel's comments are also good. > > …success! Looks like I spoke a bit too soon. Everything works as far as the fat binaries are concerned, except that -mmacosx-version-min is set to the host’s OS version, not that of the SDK, causing errors when it tries to link against 10.6’s versions of libraries instead of 10.5’s. This patch appears to solve that; it uses the OS version
2008 Nov 12
1
rimage doesn't install on Mac OS X 10.4
...;949>system_profiler -detailLevel mini SPSoftwareDataType Software: System Software Overview: System Version: Mac OS X 10.4.11 (8S165) Kernel Version: Darwin 8.10.0 ice.pnl.gov:/home/waichler<942>echo $C_INCLUDE_PATH /usr/local/include ice.pnl.gov:/home/waichler<946>echo $MACOSX_DEPLOYMENT_TARGET 10.4 ice.pnl.gov:/home/waichler<947>sudo R CMD INSTALL --configure-vars='LDFLAGS=-L/sw/lib CPPFLAGS=-I/sw/include' /Users/ladmin/rimage_0.5-7.tar.gz . . . gcc -arch ppc -std=gnu99 -I/Library/Frameworks/R.framework/Resources/include -I/Library/Frameworks/R.framework/Resources/include...
2013 Nov 11
2
[LLVMdev] [cfe-dev] [Reminder] LLVM 3.4 Release Branching
Jack, Where do the "-isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk -mmacosx-version-min=10.8" flags come from? I don't see them in your CMake invocation - perhaps they're added via $CC or $CFLAGS? Is this being done on purpose? I can add a CMake step checking whether the current CFLAGS/LDFLAGS allow to build an
2012 Dec 19
2
[LLVMdev] LLVM 3.2 on Xcode
...s" (int vs. size_t comparisons and malloc being assigned to volatile pointers), I got 372 duplicate symbol errors from this: Ld /Volumes/Shared/NewShared/llvm/3.2/xcode/projects/compiler-rt/lib/asan/tests/Debug/AsanTest normal x86_64 cd /Volumes/Shared/NewShared/llvm/3.2/source setenv MACOSX_DEPLOYMENT_TARGET 10.8 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk -L/Volumes/Shared/NewShared/llvm/3.2/xcode/projects/compiler-rt/lib/asan/...
2012 Dec 19
0
[LLVMdev] LLVM 3.2 on Xcode
..._t comparisons and malloc being assigned to volatile pointers), I got 372 duplicate symbol errors from this: > > Ld /Volumes/Shared/NewShared/llvm/3.2/xcode/projects/compiler-rt/lib/asan/tests/Debug/AsanTest normal x86_64 > cd /Volumes/Shared/NewShared/llvm/3.2/source > setenv MACOSX_DEPLOYMENT_TARGET 10.8 > /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk -L/Volumes/Shared/NewShared/llvm/3.2/xcode/projects/compiler-rt/lib/...
2012 Dec 21
2
[LLVMdev] LLVM 3.2 on Xcode
...d malloc being assigned to volatile pointers), I got 372 > duplicate symbol errors from this: > > Ld > /Volumes/Shared/NewShared/llvm/3.2/xcode/projects/compiler-rt/lib/asan/tests/Debug/AsanTest > normal x86_64 > cd /Volumes/Shared/NewShared/llvm/3.2/source > setenv MACOSX_DEPLOYMENT_TARGET 10.8 > > /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ > -arch x86_64 -isysroot > /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk > -L/Volumes/Shared/NewShared/llvm/3.2/xcode/projects/...
2012 Dec 21
0
[LLVMdev] LLVM 3.2 on Xcode
...s" (int vs. size_t comparisons and malloc being assigned to volatile pointers), I got 372 duplicate symbol errors from this: Ld /Volumes/Shared/NewShared/llvm/3.2/xcode/projects/compiler-rt/lib/asan/tests/Debug/AsanTest normal x86_64 cd /Volumes/Shared/NewShared/llvm/3.2/source setenv MACOSX_DEPLOYMENT_TARGET 10.8 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk -L/Volumes/Shared/NewShared/llvm/3.2/xcode/projects/compiler-rt/lib/asan/...