Displaying 20 results from an estimated 109 matches for "mmacosx".
Did you mean:
macosx
2008 Sep 22
1
Building binary package fails because of missing dependent package
...eaning src
* removing junk files
* checking for LF line-endings in source and make files
* checking for empty or unneeded directories
* building binary distribution
* Installing *source* package 'mxFinance' ...
** libs
** arch - i386
gcc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk
-mmacosx-version-min=10.4 -std=gnu99
-I/Library/Frameworks/R.framework/Resources/include
-I/Library/Frameworks/R.framework/Resources/include/i386 -msse3
-fPIC -g -O2 -march=nocona -c init.c -o init.o
gcc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk
-mmacosx-version-min=10.4 -std=gnu99 -dynamiclib...
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 from the SDK path for -mmacosx-version-min if UNIVERSAL_SDK_PATH is specified.
--...
2013 Feb 05
2
[LLVMdev] CMake, compiler-rt, and MacOS
...Sure, but I'm often busy. You're better off using the development mailing
>> list for questions such as this, and I've moved the conversation there.
>>
>>
>>> I have a problem compiling compiler-rt on MacOS with libc++. For this to
>>> work, the flag -mmacosx-version-min=10.7 is required, so I use:
>>> CMAKE_CXX_FLAGS:STRING=-mmacosx-version-min=10.7 -stdlib=libc++
>>>
>>> However, around line 140, the CMakeLists.txt of compiler-rt contains:
>>> if(APPLE)
>>> list(APPEND SANITIZER_COMMON_CFLAGS -mmacosx-ver...
2008 May 24
1
RSPerl & OS X
....
calling make -f Makefile.perl install
make: Makefile.perl: No such file or directory
make: *** No rule to make target `Makefile.perl'. Stop.
chmod: blib/lib/R.pm: No such file or directory
Finished configuration
** libs
** arch - i386
gcc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk
-mmacosx-version-min=10.4 -std=gnu99 -no-cpp-precomp
-I/Library/Frameworks/R.framework/Resources/include
-I/Library/Frameworks/R.framework/Resources/include/i386 -I. -g -pipe
-fno-common -DPERL_DARWIN -no-cpp-precomp -fno-strict-aliasing
-I/usr/local/include
-I/System/Library/Perl/5.8.6/darwin-thread-mult...
2013 Feb 05
2
[LLVMdev] CMake, compiler-rt, and MacOS
...> CMake-built-mainainer, so..:
>
Sure, but I'm often busy. You're better off using the development mailing
list for questions such as this, and I've moved the conversation there.
> I have a problem compiling compiler-rt on MacOS with libc++. For this to
> work, the flag -mmacosx-version-min=10.7 is required, so I use:
> CMAKE_CXX_FLAGS:STRING=-mmacosx-version-min=10.7 -stdlib=libc++
>
> However, around line 140, the CMakeLists.txt of compiler-rt contains:
> if(APPLE)
> list(APPEND SANITIZER_COMMON_CFLAGS -mmacosx-version-min=10.5)
> endif()
>
> No...
2009 Sep 18
2
[LLVMdev] OT: intel darwin losing primary target status
Nick,
How exactly do you envision this being done? Looking at the contents
of config/darwin.h, I see...
/* Support -mmacosx-version-min by supplying different (stub) libgcc_s.dylib
libraries to link against, and by not linking against libgcc_s on
earlier-than-10.3.9.
Note that by default, -lgcc_eh is not linked against! This is
because in a future version of Darwin the EH frame information may
be in a n...
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 iossim binary, and skip building the iossim runt...
2013 Feb 05
0
[LLVMdev] CMake, compiler-rt, and MacOS
...>>
>
> Sure, but I'm often busy. You're better off using the development mailing
> list for questions such as this, and I've moved the conversation there.
>
>
>> I have a problem compiling compiler-rt on MacOS with libc++. For this to
>> work, the flag -mmacosx-version-min=10.7 is required, so I use:
>> CMAKE_CXX_FLAGS:STRING=-mmacosx-version-min=10.7 -stdlib=libc++
>>
>> However, around line 140, the CMakeLists.txt of compiler-rt contains:
>> if(APPLE)
>> list(APPEND SANITIZER_COMMON_CFLAGS -mmacosx-version-min=10.5)
>&...
2013 Nov 11
0
[LLVMdev] [cfe-dev] [Reminder] LLVM 3.4 Release Branching
On Mon, Nov 11, 2013 at 01:59:25PM +0400, Alexander Potapenko wrote:
> 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?
In the llvm-3.4 toplevel Makefile.rules file, I see...
ifeq ($(HOST_OS),Darwin)
ifdef MACOSX_DEPLOYMENT_TARGET
DARWIN_V...
2009 Dec 22
1
[LLVMdev] Cross-compiling LLVM on Mac OS X
...ch in CFLAGS (and CXXFLAGS) and not using --build or --host builds for x86_64 no matter what you specify for the architecture (in my case, the documented i386 and ppc).
>
> The full command I’m using is as follows:
>
> CFLAGS="-arch $cpu -isysroot /Developer/SDKs/MacOSX10.5.sdk/ -mmacosx-version-min=10.5" CXXFLAGS="-arch $cpu -isysroot /Developer/SDKs/MacOSX10.5.sdk/ -mmacosx-version-min=10.5" ./configure --enable-optimized --enable-jit --enable-targets=x86,x86_64,powerpc
>
> $cpu is i386 or ppc.
>
> The configure script’s output says, near the top:
>...
2009 Sep 18
0
[LLVMdev] OT: intel darwin losing primary target status
This may be that the libgcc_s.dylib based unwinder is incompatible
with the darwin unwinder. You cannot mix and match the two. One of
the lines from the bugzilla comments shows:
/sw/lib/gcc4.5/lib/libgcc_s.1.dylib (compatibility version 1.0.0,
being used. That will not work. All of the libgcc_s.dylib
functionality has been subsumed into libSystem.dylib on SnowLeopard
(darwin10). The
2023 Sep 02
1
Fails to install Rfast package
...resolve this error?
Thankss for your help
> install.packages("/Volumes/WDStorage/NAS Download/Rfast_2.0.8.tar.gz", repos = NULL)
* installing *source* package ?Rfast? ...
** package ?Rfast? successfully unpacked and MD5 sums checked
** using staged installation
** libs
clang++ -mmacosx-version-min=10.13 -std=gnu++17
-I"/Library/Frameworks/R.framework/Resources/include" -DNDEBUG
-I../inst/include
-I'/Library/Frameworks/R.framework/Versions/4.2/Resources/library/Rcpp/include'
-I'/Library/Frameworks/R.framework/Versions/4.2/Resources/library/RcppArmadillo/inclu...
2008 Aug 21
1
pnmath compilation failure; dylib issue?
...n
failure...adverse effect, produced error on "-arch"
any suggestion about how to get pnmath to compile would be most
useful...I'm not sure it will even speed things up but thought I
would try...
pnmath failed:
...
gcc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-
version-min=10.4 -std=gnu99 -dynamiclib -Wl,-
headerpad_max_install_names -mmacosx-version-min=10.4 -undefined
dynamic_lookup -single_module -multiply_defined suppress -L/usr/local/
lib -o pnmath.so bd0.o beta.o chebyshev.o choose.o d1mach.o dbeta.o
dbinom.o dcauchy.o dchisq.o dexp.o df.o d...
2013 Nov 10
0
[LLVMdev] [Reminder] LLVM 3.4 Release Branching
...-hidden -Wall -W -Wno-unused-parameter -Wwrite-strings -Wmissing-field-initializers -pedantic -Wno-long-long -Wcovered-switch-default -Wnon-virtual-dtor -O3 -DNDEBUG -arch x86_64 -arch i386 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk -mmacosx-version-min=10.8 -I/sw/src/fink.build/llvm34-3.4-0/llvm-3.4/build/projects/compiler-rt/lib/asan -I/sw/src/fink.build/llvm34-3.4-0/llvm-3.4/projects/compiler-rt/lib/asan -I/sw/src/fink.build/llvm34-3.4-0/llvm-3.4/build/include -I/sw/src/fink.build/llvm34-3.4-0/llvm-3.4/include -I/sw/src/fink.build/l...
2009 Sep 18
2
[LLVMdev] OT: intel darwin losing primary target status
I realize this is off-topic for the list, but I thought
all the darwin developers here might want to be aware of
this. The current regressions in gcc trunk regarding
exception handling has been escalated to a P1 in order to
attract darwin developers to the issue...
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41260#c31
If these regressions aren't fixed before gcc 4.5's release,
it appears
2014 Jul 25
5
1.21 vs 1.3 encoding speed
a. Intel 2.8 Ghz Core I7 (dual core, I7-4558U) in late 2013 Macbook Pro
with Retina Display
b. I compiled it the same way I compiled 1.2.1:
./configure -enable-static -disable-shared CFLAGS=" -isysroot
/Developer/SDKs/MacOSX10.6.sdk -mmacosx-version-min=10.6"
make
Am i doing something wrong?
Thanks,
Scott
On Fri, Jul 25, 2014 at 12:54 PM, lvqcl <lvqcl.mail at gmail.com> wrote:
> Scott Brown wrote:
>
> > I'm on a Mac and I'm noticing that encoding via the flac command line is
> > significantly...
2009 Sep 18
0
[LLVMdev] OT: intel darwin losing primary target status
...milar to the libgcc_ext.dylib idea
from http://gcc.gnu.org/bugzilla/show_bug.cgi?id=3988
-Nick
On Sep 18, 2009, at 9:47 AM, Jack Howarth wrote:
> Nick,
> How exactly do you envision this being done? Looking at the
> contents
> of config/darwin.h, I see...
>
> /* Support -mmacosx-version-min by supplying different (stub)
> libgcc_s.dylib
> libraries to link against, and by not linking against libgcc_s on
> earlier-than-10.3.9.
>
> Note that by default, -lgcc_eh is not linked against! This is
> because in a future version of Darwin the EH frame i...
2013 Nov 10
3
[LLVMdev] [Reminder] LLVM 3.4 Release Branching
Good day!
This is just a reminder that branching for the 3.4 release will occur at this time:
Monday, November 18, 2013 at 7:00:00 PM PST / Tuesday, November 19, 2013 at 3:00:00 AM UTC
What this means for you!
------------------------
* Please keep the release notes up to date -- There has been very few commits to them. Please be proactive and update them with any significant feature that was
2013 Nov 11
1
[LLVMdev] [cfe-dev] [Reminder] LLVM 3.4 Release Branching
...o-unused-parameter -Wwrite-strings -Wmissing-field-initializers
> -pedantic -Wno-long-long -Wcovered-switch-default -Wnon-virtual-dtor -O3
> -DNDEBUG -arch x86_64 -arch i386 -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk
> -mmacosx-version-min=10.8
> -I/sw/src/fink.build/llvm34-3.4-0/llvm-3.4/build/projects/compiler-rt/lib/asan
> -I/sw/src/fink.build/llvm34-3.4-0/llvm-3.4/projects/compiler-rt/lib/asan
> -I/sw/src/fink.build/llvm34-3.4-0/llvm-3.4/build/include
> -I/sw/src/fink.build/llvm34-3.4-0/llvm-3.4/include
&g...
2017 Jun 29
4
dovecot 2.2.31: linking error
-std=gnu99
-mmacosx-version-min=10.12
[...]
Undefined symbols for architecture x86_64:
"_imapc_client_cmd", referenced from:
_imapc_quota_refresh in quota-imapc.o
"_imapc_client_get_capabilities", referenced from:
_imapc_quota_refresh in quota-imapc.o
"_imapc_command_sendf", referenced fr...