search for: rc_arch

Displaying 14 results from an estimated 14 matches for "rc_arch".

Did you mean: r_arch
2009 Oct 09
2
[LLVMdev] fudging the top-level Makefile
...> On Oct 8, 2009, at 4:52 PM, Stuart Hastings wrote: >> Currently, to get LLVM to build "Apple-style," it's necessary to >> copy two files (utils/buildit/GNUmakefile and utils/buildit/ >> build_llvm) into the top-level directory. > > Why not: > > $ RC_ARCHS="x86" make > echo Apple Build. > Apple Build. > $ make > echo Standard Build > Standard Build > $ cat Makefile > ifneq ($(RC_ARCHS),) > include Makefile.apple > else > all: > echo Standard Build > endif > mrs $ cat Makefile.apple > all: > ec...
2009 Oct 08
4
[LLVMdev] fudging the top-level Makefile
...would look this over. I'm proposing to rename the top-level Makefile to "Makefile.standard", and add a new, trivial top-level "Makefile" that detects the Apple build environment. Every Apple-style build happens in the presence of an environment variable named "$RC_ARCHS". If the magic $RC_ARCHS is detected, the new Makefile arranges for an Apple-style build. If the magic environment variable is absent, "Makefile.standard" is included, and everything proceeds as usual. I've tested this by building LLVM on OS/X: 1) with a separate build...
2009 Oct 09
0
[LLVMdev] fudging the top-level Makefile
On Oct 8, 2009, at 4:52 PM, Stuart Hastings wrote: > Currently, to get LLVM to build "Apple-style," it's necessary to > copy two files (utils/buildit/GNUmakefile and utils/buildit/ > build_llvm) into the top-level directory. Why not: $ RC_ARCHS="x86" make echo Apple Build. Apple Build. $ make echo Standard Build Standard Build $ cat Makefile ifneq ($(RC_ARCHS),) include Makefile.apple else all: echo Standard Build endif mrs $ cat Makefile.apple all: echo Apple Build. It leaves Makefile mostly alone, all except for three line...
2009 Oct 09
0
[LLVMdev] fudging the top-level Makefile
...2 PM, Stuart Hastings wrote: >>> Currently, to get LLVM to build "Apple-style," it's necessary to >>> copy two files (utils/buildit/GNUmakefile and utils/buildit/ >>> build_llvm) into the top-level directory. >> >> Why not: >> >> $ RC_ARCHS="x86" make >> echo Apple Build. >> Apple Build. >> $ make >> echo Standard Build >> Standard Build >> $ cat Makefile >> ifneq ($(RC_ARCHS),) >> include Makefile.apple >> else >> all: >> echo Standard Build >> endif...
2009 Oct 14
1
[LLVMdev] fudging the top-level Makefile
...>>>> Currently, to get LLVM to build "Apple-style," it's necessary to >>>> copy two files (utils/buildit/GNUmakefile and utils/buildit/ >>>> build_llvm) into the top-level directory. >>> >>> Why not: >>> >>> $ RC_ARCHS="x86" make >>> echo Apple Build. >>> Apple Build. >>> $ make >>> echo Standard Build >>> Standard Build >>> $ cat Makefile >>> ifneq ($(RC_ARCHS),) >>> include Makefile.apple >>> else >>> all: >&...
2008 Oct 21
4
[LLVMdev] Replacing llvm-gcc in Xcode 3.1.1 with svn version
...# make -j2 # make install # cp -p ../llvm/tools/clang/utils/* /Developer/usr/local/bin/ 2. Build llvm-gcc # cd llvm-gcc # make clean # rm -rf build # mkdir -p build/obj build/dst build/sym # (NOTE: I don't want PowerPC code) # gnumake install RC_OS=macos RC_ARCHS="i386" TARGETS="i386 x86_64" SRCROOT=`pwd` OBJROOT=`pwd`/build/obj DSTROOT=`pwd`/build/dst SYMROOT=`pwd`/build/sym 3. Replace old llvm-gcc with new one # rm -rf /Developer/usr/llvm-gcc-4.2 # ditto build/dst / ------ rest only once ------- 4. Fix libLTOs #...
2007 Jul 11
0
[LLVMdev] -arch option ignored?
On Wed, 11 Jul 2007, Leo Fink wrote: >> You need to build darwin driver to use -arch. Try using build_gcc >> script to configure and build llvm-gcc. > > Well, I guess this task exceeds my expertise. I just thought there > was some obvious mistake I made because a lot of people might be > using llvm-gcc4 as a drop-in to Apple's gcc to build multi- > architecture
2007 Jul 11
3
[LLVMdev] -arch option ignored?
Thanks for the hint, Devang. On Jul 6, 2007, at 7:26 PM, Devang Patel wrote: > You need to build darwin driver to use -arch. Try using build_gcc > script to configure and build llvm-gcc. Well, I guess this task exceeds my expertise. I just thought there was some obvious mistake I made because a lot of people might be using llvm-gcc4 as a drop-in to Apple's gcc to build multi-
2018 Feb 09
3
R Compilation gets stuck on Windows 64
...F64 = D:/Rtools/mingw_64/bin/ # Set this to indicate a non-gcc compiler and version # COMPILED_BY = <determined automatically> # Others use a -m64 or -m32 option to select architectures # M_ARCH = -m64 # and for as (--32 or --64) # AS_ARCH = --64 # and for windres (-F pe-i386 or pe-x86-64) # RC_ARCH = pe-x86-64 # and for dlltool ("-m i386 --as-flags --32" vs "-m i386:x86-64 --as-flags --64") DT_ARCH = -m i386:x86-64 --as-flags --64 # 32- or 64-bit Windows? WIN = 64 # The gcc 4.9.3 64 bit toolchain is set up for the 'medium code' model and needs # to remove the .re...
2012 Nov 30
1
compiling R for Windows 64 bit
Dear All, I'm trying to compile R for Windows 64 bit. I'm following the instructions of R installation and administration guide v2.15.2 (3.1; A.3.1.4; C.2.2) and at the moment I compiled the default version (single threaded, gcc, without external BLAS) ?on my notebook (windows xp 32 bit) Now I'm trying to compile it on Windows servers 64 bit with the next configuration : 1. Windows
2012 Dec 17
1
Problems with building R from sources
...ailing / . # prefix for 32-bit: path or i686-w64-mingw32- BINPREF = # prefix for 64-bit: path or x86_64-w64-mingw32- BINPREF64 = x86_64-w64-mingw32- # Others use a -m64 or -m32 option to select architectures M_ARCH = # and for as (--32 or --64) AS_ARCH = # and for windres (-F pe-i386 or pe-x86-64) RC_ARCH = # and for dlltool ("-m i386 --as-flags --32" vs "-m i386:x86-64 --as-flags --64") DT_ARCH = # 32- or 64-bit Windows? WIN = 64 # We normally link directly against DLLs, # but this macro forces the use of import libs # Has been needed for some versions of MinGW-w64 # USE_IMPLI...
2018 Feb 09
0
R Compilation gets stuck on Windows 64
...s to indicate a non-gcc compiler and version > # COMPILED_BY = <determined automatically> > > # Others use a -m64 or -m32 option to select architectures > # M_ARCH = -m64 > # and for as (--32 or --64) > # AS_ARCH = --64 > # and for windres (-F pe-i386 or pe-x86-64) > # RC_ARCH = pe-x86-64 > # and for dlltool ("-m i386 --as-flags --32" vs "-m i386:x86-64 --as-flags > --64") > DT_ARCH = -m i386:x86-64 --as-flags --64 > > # 32- or 64-bit Windows? > WIN = 64 > > # The gcc 4.9.3 64 bit toolchain is set up for the 'medium code...
2018 Feb 09
2
R Compilation gets stuck on Windows 64
Hi All, I am trying to compile R from source on a 64 bit Windows. I have downloaded and installed all the third party software as per the R - documentation. The compilation starts fine and after a while it stops with the following error message: D:/Rtools/mingw_64/bin/../lib/gcc/x86_64-w64-mingw32/4.9.3/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lRgraphapp collect2.exe: error: ld
2018 Feb 09
1
R Compilation gets stuck on Windows 64
...and version >> # COMPILED_BY = <determined automatically> >> >> # Others use a -m64 or -m32 option to select architectures >> # M_ARCH = -m64 >> # and for as (--32 or --64) >> # AS_ARCH = --64 >> # and for windres (-F pe-i386 or pe-x86-64) >> # RC_ARCH = pe-x86-64 >> # and for dlltool ("-m i386 --as-flags --32" vs "-m i386:x86-64 --as-flags >> --64") >> DT_ARCH = -m i386:x86-64 --as-flags --64 >> >> # 32- or 64-bit Windows? >> WIN = 64 >> >> # The gcc 4.9.3 64 bit toolchain is se...