search for: target_o

Displaying 20 results from an estimated 30 matches for "target_o".

Did you mean: target_os
2010 Mar 04
4
[LLVMdev] Cygwin patches for 2.7
...ts there functionality they will have to fix them :) Aaron Index: tools/Makefile =================================================================== --- tools/Makefile (revision 97136) +++ tools/Makefile (working copy) @@ -44,4 +44,8 @@ DIRS := $(filter-out lto gold, $(DIRS)) endif +ifeq ($(TARGET_OS), $(filter $(TARGET_OS), Cygwin)) + PARALLEL_DIRS := $(filter-out edis, $(PARALLEL_DIRS)) +endif + include $(LEVEL)/Makefile.common Index: runtime/Makefile =================================================================== --- runtime/Makefile (revision 97136) +++ runtime/Makefile (working copy...
2010 Aug 05
2
[LLVMdev] [PATCH] Capability of Win32.DLL with ENABLE_SHARED
...(DARWIN_VERSION) endif else - ifeq ($(HOST_OS),Cygwin) - SharedLinkOptions=-shared -nostdlib -Wl,--export-all-symbols \ - -Wl,--enable-auto-import -Wl,--enable-auto-image-base - else - SharedLinkOptions=-shared - endif + SharedLinkOptions=-shared endif ifeq ($(TARGET_OS),Darwin) @@ -585,11 +599,13 @@ ifeq ($(TARGET_OS),Darwin) endif ifdef SHARED_LIBRARY +ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW)) ifneq ($(HOST_OS),Darwin) LD.Flags += $(RPATH) -Wl,'$$ORIGIN' else ifneq ($(DARWIN_MAJVERS),4) - LD.Flags += $(RPATH) -Wl,$(LibDir) + LD....
2006 Jun 02
0
Re: Update libtheora-1.0alpha6
...31 08:29:37 2006 +++ ./patches/patch-Makefile_in Wed Dec 31 19:00:00 1969 @@ -1,12 +0,0 @@ -$OpenBSD: patch-Makefile_in,v 1.1.1.1 2005/07/09 00:35:02 jolan Exp $ ---- Makefile.in.orig Wed Dec 15 14:06:17 2004 -+++ Makefile.in Fri Jul 8 19:03:16 2005 -@@ -206,7 +206,7 @@ target_cpu = @target_cpu@ - target_os = @target_os@ - target_vendor = @target_vendor@ - AUTOMAKE_OPTIONS = foreign 1.6 dist-zip dist-bzip2 --SUBDIRS = lib include doc examples debian -+SUBDIRS = lib include - EXTRA_DIST = COPYING autogen.sh win32 libtheora.spec libtheora.spec.in \ - theora-uninstalled.pc.in - diff -pruN --exclude=CV...
2004 Sep 10
5
detecting host machine in configure.in?
I am trying to set up a flexible infrastructure for the assembly code. Basically what I want is configure.in determination of basic machine type (intel/compatible, alpha, ppc), then within that (say intel) the code will detect variants like MMX, SSE, and use the right routines. I know how to do the second, but what is a good way to do the first? Linux/Cygwin/Solaris seem to support the MACHTYPE
2010 Aug 05
0
[LLVMdev] [PATCH] Capability of Win32.DLL with ENABLE_SHARED
Hi Takumi, > Any feedbacks are welcome. > Have fun! This seems to be pretty useful addition to LLVM on windows! And it seems the only painless way to make plugins working, yay! For me the patch looks pretty good. One minor thing: could you please rename SharedDir => SharedLibDir Thanks! -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg
2010 Aug 05
3
[LLVMdev] [PATCH] Capability of Win32.DLL with ENABLE_SHARED
...(DARWIN_VERSION) endif else - ifeq ($(HOST_OS),Cygwin) - SharedLinkOptions=-shared -nostdlib -Wl,--export-all-symbols \ - -Wl,--enable-auto-import -Wl,--enable-auto-image-base - else - SharedLinkOptions=-shared - endif + SharedLinkOptions=-shared endif ifeq ($(TARGET_OS),Darwin) @@ -585,11 +600,13 @@ ifeq ($(TARGET_OS),Darwin) endif ifdef SHARED_LIBRARY +ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW)) ifneq ($(HOST_OS),Darwin) LD.Flags += $(RPATH) -Wl,'$$ORIGIN' else ifneq ($(DARWIN_MAJVERS),4) - LD.Flags += $(RPATH) -Wl,$(LibDir) + LD....
2010 Aug 16
3
[LLVMdev] -fomit-frame-pointer on intel darwin
...arwin releases which default to dwarf2 now in FSF gcc trunk using... --- trunk/gcc/configure.ac 2010/08/13 15:50:40 163226 +++ trunk/gcc/configure.ac 2010/08/13 17:06:42 163227 @@ -1584,8 +1584,9 @@ [ --enable-frame-pointer enable -fno-omit-frame-pointer by default for 32bit x86], [], [ case $target_os in -linux*) - # Enable -fomit-frame-pointer by default for Linux. +linux* | darwin[[8912]]*) + # Enable -fomit-frame-pointer by default for Linux and Darwin with + # DWARF2. enable_frame_pointer=no ;; *) --- trunk/gcc/config/i386/i386.c 2010/08/13 15:50:40 163226 +++ trunk/gcc/config/i38...
2017 Sep 26
7
Semi-OT: hardware: NVidia proprietary driver, C7.4
This is really frustrating. I've got a server with two K20c Tesla cards. I need to use the proprietary drivers to use the CUDA toolkit. Btw, I had no trouble at all with building for CentOS 7.3 I have what NVidia claims is the correct driver package, a 340 series. It appears to build, but then fails to load. The only error I see is "no such device", which makes no sense to me, esp.
2017 Sep 26
0
Semi-OT: hardware: NVidia proprietary driver, C7.4
...> unsigned integers. > > And lsmod shows no nvidia drivers registered, but the logs claims that > Error: Driver 'nvidia' is already registered, aborting... > Have you tried installing the toolkit from nVidia's own repository: https://developer.nvidia.com/cuda-downloads?target_os=Linux&target_arch=x86_64&target_distro=CentOS&target_version=7&target_type=rpmnetwork That includes the kernel drivers as far as I can remember. P.
2017 Oct 06
0
CUDA tools?
...ry wouldn't build, because of the lack of .../include/linux/fence.h.) > I use the nVidia repo for CUDA. It seems to work OK and you don't need to compile anything as far as I can see. Sorry if you already know this, but you can get it from https://developer.nvidia.com/cuda-downloads?target_os=Linux&target_arch=x86_64&target_distro=CentOS&target_version=7&target_type=rpmnetwork sorry for the long URL - if you want go to https://developer.nvidia.com/cuda-downloads and click through the selections. Ultimately you just do a 'yum install cuda' and it installs e...
2004 Sep 10
0
detecting host machine in configure.in?
...n configure.in, and it will place canonical system type for the target in the shell variable 'target' in the form CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM. Be sure to use the target, not the host, to allow cross-compiling. It will also be broken out into target_cpu, target_vendor and target_os. So you can use $target_cpu for your tests. A simple: case $target_cpu in i*86) blahblah ;; powerpc) blahblah ;; sparc) blahblah ;; esac should do the trick. If you'd rather do the computation in the makefile, you can just AC_SUBST these in (automake might do this automagically; I...
2004 Jun 05
0
DSP Tools Technical Support
...: Other dsp_using_other : I don't know. G.729ab and other voice codecs platform : Other platform_other : PCI Card emulator : None software : None software_other : operating_system : Other operating_system_other: Linux target_os : Other target_os_other : Linux design_stage : Developing Hardware/Software application : Asterisk IP PBX open porject (www.asterisk.org) prob_description: I am looking for some low cost PCI Card running under Linux for DSP Voice processing (coding/transcoding...
2013 Nov 11
0
[LLVMdev] [cfe-dev] [Reminder] LLVM 3.4 Release Branching
...space -Wl,-undefined,suppress SharedLinkOptions := -dynamiclib ifdef DEPLOYMENT_TARGET SharedLinkOptions += $(DEPLOYMENT_TARGET) else ifneq ($(ARCH),ARM) SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION) endif endif else SharedLinkOptions=-shared endif ifeq ($(TARGET_OS),Darwin) ifdef DEPLOYMENT_TARGET TargetCommonOpts += $(DEPLOYMENT_TARGET) else ifneq ($(ARCH),ARM) TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION) endif endif endif > > I can add a CMake step checking whether the current CFLAGS/LDFLAGS > allow to build...
2007 Nov 22
1
Installation problem of SAMBA 3.0.23a on HP-UX 11.23
...,x,x,' rootsbindir='${SBINDIR}' sbindir='${BINDIR}' selftest_prefix='./' sharedstatedir='${prefix}/com' smbtorture4_path='' swatdir='${prefix}/swat' sysconfdir='${prefix}/etc' target='' target_alias='' target_cpu='' target_os='' target_vendor='' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define PACKAGE_BUGREPORT "" #define PACKAGE_NAME "" #define PACKAGE_STRING "" #define PACKAGE_TARNAME "" #define PACKAGE_VERSION "" configure: exit 77...
2017 Oct 05
4
CUDA tools?
vychytraly . wrote: > On Thu, Oct 5, 2017 at 9:51 PM, <m.roth at 5-cent.us> wrote: >> >> So, kmod-nvidia installed. Trouble is, I have no tool to test it. And my >> user might need nvcc, which, of course, is only provided by the NVidia >> CUDA, which won't install, because it conflicts with kmod-nvidia. >> >> Has *anyone* dealt with this? If so,
2009 Jun 17
1
[LLVMdev] Configure problem of llvm2.5 in Mac OS X 10.4.11
...ansform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' subdirs=' projects/sample' sysconfdir='${prefix}/etc' target='powerpc-apple-darwin8.11.0' target_alias='' target_cpu='powerpc' target_os='darwin8.11.0' target_vendor='apple' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define PACKAGE_NAME "llvm" #define PACKAGE_TARNAME "-llvm-" #define PACKAGE_VERSION "2.5" #define PACKAGE_STRING "llvm 2.5" #define PACKAGE_BUGREPOR...
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
2008 Apr 08
1
unable to compile samba 3.0.28a on RHEL 5.1 i386
...SBINDIR}' sbindir='${exec_prefix}/sbin' selftest_prefix='' sharedstatedir='${prefix}/com' smbtorture4_path='' swatdir='/usr/share/swat' sysconfdir='${prefix}/etc' target='i686-pc-linux-gnu' target_alias='' target_cpu='i686' target_os='linux-gnu' target_vendor='pc' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define CONFIG_H_IS_FROM_SAMBA 1 #define PACKAGE_BUGREPORT "" #define PACKAGE_NAME "" #define PACKAGE_STRING "" #define PACKAGE_TARNAME "" #define PACKAGE_...
2005 Oct 25
2
SOLARIS 9 INSTALL PROBLEMS
...9;NONE' privatedir='${prefix}/private' program_transform_name='s,x,x,' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' swatdir='${prefix}/swat' sysconfdir='${prefix}/etc' target='' target_alias='' target_cpu='' target_os='' target_vendor='' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define PACKAGE_BUGREPORT "" #define PACKAGE_NAME "" #define PACKAGE_STRING "" #define PACKAGE_TARNAME "" #define PACKAGE_VERSION "" configure: exit 77 root@c...
2007 Nov 25
0
_net_auth2: creds_server_check failed Error
...bindir='${BINDIR}' > selftest_prefix='./' > sharedstatedir='${prefix}/com' > smbtorture4_path='' > swatdir='${prefix}/swat' > sysconfdir='${prefix}/etc' > target='' > target_alias='' > target_cpu='' > target_os='' > target_vendor='' > > ## ----------- ## > ## confdefs.h. ## > ## ----------- ## > > #define PACKAGE_BUGREPORT "" > #define PACKAGE_NAME "" > #define PACKAGE_STRING "" > #define PACKAGE_TARNAME "" > #de...