search for: isysroot

Displaying 20 results from an estimated 150 matches for "isysroot".

Did you mean: sysroot
2012 Aug 29
2
[LLVMdev] Correct usage of isysroot argument
Hi When I'm using clang 3.1 with the isysroot argument, it doesn't seem to pick up header files from the directory I'm passing through the command line: > $ clang -isysroot/myownheaders -v foo.c -c -o foo.o > clang version 3.1 (tags/RELEASE_31/final) > Target: i386-pc-linux-gnu > Thread model: posix > "/usr/bin/cl...
2012 Aug 29
0
[LLVMdev] Correct usage of isysroot argument
Hi When I'm using clang 3.1 with the isysroot argument, it doesn't seem to pick up header files from the directory I'm passing through the command line: > $ clang -isysroot/myownheaders -v foo.c -c -o foo.o > clang version 3.1 (tags/RELEASE_31/final) > Target: i386-pc-linux-gnu > Thread model: posix > "/usr/bin/cl...
2012 Aug 29
0
[LLVMdev] Correct usage of isysroot argument
I'm do looking for the features the isysroot gives. I have "/myownheaders/usr/include" and "/myownheaders/usr/local/include" folders (they contain the actual header files). Again, the strange that gcc seem to be working with it. In the mean time I've found this (http://lists.cs.uiuc.edu/pipermail/llvmbugs/2011-Decemb...
2008 May 24
1
RSPerl & OS X
...amework/Resources/etc/Makeconf'. Stop. 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/Sys...
2010 Dec 21
0
[LLVMdev] Patch: add support for -isysroot flag to llvmc
Hi all, We discovered that llvmc doesn't forward the isysroot flag (useful on Darwin platforms) on to the compiler. Attached a small patch to tools/llvmc/src/Base.td.in to fix that. As this is my first patch posted here, please tell me if there's anything else I should do. Cheers, Harel Cain -------------- next part -------------- A non-text attachme...
2016 Oct 08
2
cmake 3.7.0-rc1 breaks stage2 bootstrap in openmp on 10.11 with Xcode 8
....0.0-1/llvm-4.0.0.src/projects/openmp/runtime/src/kmp.h:98: /sw/src/fink.build/llvm40-4.0.0-1/llvm-4.0.0.src/projects/openmp/runtime/src/kmp_lock.h:26:10: fatal error: 'atomic' file not found #include <atomic> ^ This appears to be due to the new cmake 3.7.0-rc1 resulting in -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk being used in the compilation of openmp.... cd /sw/src/fink.build/llvm40-4.0.0-1/build/stage2/projects/openmp/runtime/src && /sw/src/fink.build/llvm40-4.0.0-1/opt-bin/cc-st1-clang -D__STDC_C...
2018 Nov 16
2
LLVM_CONFIG_PATH when building Clang from sources
...fix the LLVM_CONFIG_PATH error? Thanks in advance. ============================== -- The C compiler identification is GNU 4.0.1 -- The CXX compiler identification is GNU 4.0.1 -- The ASM compiler identification is GNU -- Found assembler: /Developer/usr/bin/cc -- Checking whether C compiler has -isysroot -- Checking whether C compiler has -isysroot - yes -- Checking whether C compiler supports OSX deployment target flag -- Checking whether C compiler supports OSX deployment target flag - yes -- Check for working C compiler: /Developer/usr/bin/cc -- Check for working C compiler: /Developer/usr/bin/c...
2012 Jul 29
0
[LLVMdev] rotate
...from Hacker's Delight i.e., ====== #include <stdlib.h> #include <stdint.h> uint32_t ror(uint32_t input, size_t rot_bits) { return (input >> rot_bits) | (input << ((sizeof(input) << 3) - rot_bits)); } ====== Then compile with (assuming you are on OS X): ====== ISYSROOT=$(xcodebuild -sdk macosx -version PlatformPath)/Developer/SDKs/MacOSX10.8.sdk $(xcrun -find clang) -isysroot $ISYSROOT ror.c -c -S -Os -o - ====== yielding an assembly output of: ====== .section __TEXT,__text,regular,pure_instructions .globl _rotr _rotr: ## @rotr...
2007 Nov 03
0
installing packages on OS X -- lgfortran problem
...Macbook running 10.4.10. I have installed XCode 2.5. A complete error message is given below. Thank you! Stefanie * Installing to library '/Library/Frameworks/R.framework/Resources/ library' * Installing *source* package 'rmutil' ... ** libs ** arch - i386 gcc-4.0 -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk - std=gnu99 -no-cpp-precomp -I/Library/Frameworks/R.framework/Resources/ include -I/Library/Frameworks/R.framework/Resources/include/i386 - msse3 -fPIC -g -O2 -march=nocona -c cutil.c -o cutil.o gcc-4.0 -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -...
2012 Jul 29
2
[LLVMdev] rotate
in C or C++, how can I get clang/llvm to try and do a "rotate". (want to test this code in the mips16 port) i.e. emit rotr node. tia. reed
2008 Sep 22
1
Building binary package fails because of missing dependent package
...g DESCRIPTION meta-information ... OK * cleaning 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...
2007 Nov 06
2
Mac OS X Leopard and C compiling
...Intel Mac with OSX Leopard. I reinstalled the latest version of R and the Xcode tools. I'm trying to compile a C source code with the R compiler in X11, and I receive the following error message: [Macintosh:School Work 07-08/36-711/HW 3] dajmcdon% R CMD SHLIB McDonaldHW3.c gcc-4.0 -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -std=gnu99 -no-cpp-precomp -I/Library/Frameworks/R.framework/Resources/include -I/Library/Frameworks/R.framework/Resources/include/i386 -msse3 -fPIC -g -O2 -march=nocona -c McDonaldHW3.c -o McDonaldHW3.o gcc-4.0 -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk...
2007 Nov 06
2
Mac OS X Leopard and C compiling
...Intel Mac with OSX Leopard. I reinstalled the latest version of R and the Xcode tools. I'm trying to compile a C source code with the R compiler in X11, and I receive the following error message: [Macintosh:School Work 07-08/36-711/HW 3] dajmcdon% R CMD SHLIB McDonaldHW3.c gcc-4.0 -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -std=gnu99 -no-cpp-precomp -I/Library/Frameworks/R.framework/Resources/include -I/Library/Frameworks/R.framework/Resources/include/i386 -msse3 -fPIC -g -O2 -march=nocona -c McDonaldHW3.c -o McDonaldHW3.o gcc-4.0 -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk...
2016 Jul 06
3
[cfe-dev] clang++ build from source is not able to find C++ headers
...fter that, invoke "source ~/.bash_profile" on the current terminal, or > simply open a new terminal, and you'll be able to use new-clang and > new-clang++, instead of clang and clang++, to invoke your newest compiled > binary. > > > I believe the right way is to use -isysroot with the path to the SDK: > > clang++ -isysroot `xcrun --show-sdk-path` > > > Otherwise I always end-up having other issues with missing system/platform > headers. > This gives an error for me. Any ideas? ``` Sean:~/pg/llvm % ~/pg/release/bin/clang++ -v -isysroot `xcrun --sho...
2010 Jan 31
3
[LLVMdev] llvm-gcc 4.0 question
Thanks for responding, Duncan, and clarifying that y'all need more info to help. I'm trying to compile binaries on os x 10.5.8 intel hardware that are compatible on ppc os x 10.4. When I include various flags to llvm-gcc, including: -m32 -arch ppc -isysroot /Developer/SDKs/MacOS10.4u.sdk -mmacosx-version-min=10.4 I am seeing errors when compiling using llvm-gcc 4.2. If I leave out just the -isysroot /Developer/SDKs/MacOS10.4u.sdk flag, then both the native gcc and llvm-gcc produced binaries on 10.4 have runtime bus errors. Here are a couple of...
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...
2012 Jul 29
3
[LLVMdev] rotate
...;stdlib.h> > #include<stdint.h> > > uint32_t ror(uint32_t input, size_t rot_bits) > { > return (input>> rot_bits) | (input<< ((sizeof(input)<< 3) - rot_bits)); > } > ====== > > Then compile with (assuming you are on OS X): > ====== > ISYSROOT=$(xcodebuild -sdk macosx -version PlatformPath)/Developer/SDKs/MacOSX10.8.sdk > $(xcrun -find clang) -isysroot $ISYSROOT ror.c -c -S -Os -o - > ====== > > yielding an assembly output of: > ====== > .section __TEXT,__text,regular,pure_instructions > .globl _rotr > _rotr:...
2019 Jun 13
4
Clang8 on MacOS 10.14
[Please cc me, as I am not on this list.] When installing the clang8 MacOS binary by wget <clang-binaries-tarball-url> tar -xf clang* cd clang* sudo mkdir /usr/local/clang8 sudo cp -R * /usr/local/clang8 the compiler works on MacOS 10.13, but not on MacOS 10.14, with an error: /usr/local/clang/bin/../include/c++/v1/stdio.h:108:15: fatal error: 'stdio.h' file not found
2008 Feb 20
3
OSX universal rsync
...n a PPC mac though. Hopefully it will but I am wondering if there is a way to compile and make a universal binary rsync for the Mac that will run on both, from my PPC Mac. Itried that yesterday with patch -p1 <patches/flags.diff patch -p1 <patches/crtimes.diff ./configure CFLAGS="-isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch ppc -arch i386" LDFLAGS="-Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk -arch ppc -arch i386" make but it didn't work on the intel. Does anyone have any experience with making a universal binary of rsync?
2014 Feb 12
2
[LLVMdev] cmake/ninja build failing
...while (compiler-rt asan and util/unittests, at least). It turns out to be due to the fact that some paths on my system include spaces and other special characters, but the the build.ninja file was not generated with correctly quoted strings. Specifically I'm on OS X and the command is setting -isysroot to a location inside the Xcode.app, but Xcode is installed at a path which includes spaces and parentheses. I see the problem in the build.ninja commands, where FLAGS includes the problematic setting of isysroot. The cause seems to come down to the line in the compiler-rt CMakeLists.txt: > s...