search for: src_dir

Displaying 20 results from an estimated 40 matches for "src_dir".

2005 Feb 11
0
[LLVMdev] Add ability for external projects use for buildinstalled version LLVM [PATCH]
>> Before this change is committed, you need to test that all our scenarios, >> in each combination: >> >> 1. Both with and without OBJ_DIR == SRC_DIR >> 2. Single and Parallel builds >> 3. Building LLVM versus building a project (and now building from >> installed) > ok, will do... > > I found some bugs in my patch and then I will send updated version after > it testing. I finish testting new patch version (attach...
2005 Feb 10
2
[LLVMdev] Add ability for external projects use for build installed version LLVM [PATCH]
...filenames if LLVMLibDir will not define and project tooldir/Makefile set LLVMLIBS. But i will skip this part of changes in next version of patch. > Before this change is committed, you need to test that all our scenarios, > in each combination: > > 1. Both with and without OBJ_DIR == SRC_DIR > 2. Single and Parallel builds > 3. Building LLVM versus building a project (and now building from > installed) ok, will do... I found some bugs in my patch and then I will send updated version after it testing. Thank you for comments! Vladimir
2020 Mar 27
3
llvm-objdump cannot recognize mul&mulh RISC-V M Instructions
...-tc-20200220/bin/riscv64-unknown-elf --gcc-toolchain=/home/llvm/workspace/riscv/riscv-tc-20200220 RISCV_LINK_OPTS ?= -static -nostdlib -nostartfiles -lm -lgcc -T /home/llvm/workspace/HRV_IDE/common/test.ld newlib_dir := /home/llvm/workspace/llvm/llvm-project/llvm_install/riscv64-unknown-elf/include src_dir := $(WORK_DIR)/src/$(PROJ) incs += -I$(WORK_DIR)/env -I$(WORK_DIR)/common -I$(src_dir) -I$(newlib_dir) src := $(wildcard $(src_dir)/*.c) $(wildcard $(WORK_DIR)/common/*.c) $(wildcard $(WORK_DIR)/common/*.S) $(RISCV_clang) $(incs) $(RISCV_GCC_OPTS) -o $(WORK_DIR)/build/$@/$@ $(src) $(RISCV_LINK_OP...
2002 Aug 23
3
Filenames with blanks
Command like this: rsync -rxlupogtSvve ssh $src_host:"/home/wss_disk/calendar.data/'Conference Calls'" $targ_dir works fine with blanks embeded in the file name. When I try to script it like this: COM='`find '$src_dir' -mtime -'$days' -type f `' rsync -rxlupogtSvve ssh $src_host:"$COM" $targ_dir works fine on regular filenames, but does not see the ones with blanks in the middle. I changed my COM to pipe through little script to produce the same output where either the whole fil...
2011 Jan 18
3
[LLVMdev] About test suits Cont1
...have searched the access/setting of LLVMCC_EMITIR_FLAG in the build directory, recursively, and all the output is what I pasted in last email (just the same to the that in source directory). Maybe the configure failed to do it. My command list for building the test suit is as followings:* *(1) cd ~/SRC_DIR/llvm/projects* *(2) svn co http://llvm.org/svn/llvm-project/test-suite/trunk test-suite* *(3) cd LLVMGCC_DIR; * ***(4) gunzip --stdout llvm-gcc-4.2-version-platform.tar.gz | tar -xvf -* *(5) cd ~/OBJ_DIR/llvm; * *(6) SRC_DIR/configure --prefix=INS_DIR --enable-debug-runtime --disable-optimiz...
2008 Mar 28
3
Major rsync issue - overwriting files!!!
...some other such location to the beginning of the path (--link-dest variable, for instance) the script, in it's entirety is below. Please HELP!!!! #!/bin/bash export PATH=$PATH:/bin:/usr/bin:/usr/local/bin ### Properties ### LOG=/Library/Logs/rsyncREM.log SRVR_IP=*.*.*.* BAK_DIR=`date +%A` SRC_DIR=/Volumes/REM BAK_PATH="/Volumes/REM Backup/RsyncBackups/REM" LINK_DEST="/Volumes/REM Backup/RsyncBackups/REM/Daily/PreviousBackups1" EXCLUDES=/Library/Scripts/rsync/exclude.txt ### rsync options ### OPTS="-Eapztc --links --ignore-errors --exclude-from=$EXCLUDES --delete-e...
2008 Sep 01
0
Feature request: preallocation of directories
...t; #include "e2p/e2p.h" static const char * program_name = "copy_dirstruct"; #ifdef _LFS64_LARGEFILE #define LSTAT lstat64 #define STRUCT_STAT struct stat64 #else #define LSTAT lstat #define STRUCT_STAT struct stat #endif const char *dest_dir = "/mnt"; const char *src_dir = "/"; int blocksize = 4096; int dest_len = 4; int silent = 0; dev_t xdev; static void usage(void) { fprintf(stderr, "Usage: %s [-RVf] [-+=AacDdijsSu] [-v version] files...\n", program_name); exit(1); } static int copy_dir_proc(const char *, struct dirent *, void *); st...
2011 Jan 13
2
[LLVMdev] About test suits
Hi sir, I have built the test suits in following steps: 0. $cd LLVM_GCC_DIR; $gunzip --stdout llvm-gcc-4.2-*version*-* platform*.tar.gz | tar -xvf - 1. $cd SRC_DIR/llvm-2.8/projects 2. $svn co http://llvm.org/svn/llvm-project/test-suite/trunk test-suite 3.$cd OBJ_DIR; 4. $SRC_DIR/configure --prefix=INS_DIR --enable-debug-runtime --disable-optimized --enable-debug-symbols --enable-assertions --with-llvmgccdir=LLVM_GCC_DIR 5. $make. 6. $cd OBJ_DIR/projects/tes...
2011 Jan 17
0
[LLVMdev] About test suits Cont1
On Jan 15, 2011, at 8:06 PM, Qingan Li wrote: > [qali at qali llvm-2.8-rev]$ find . -exec grep -n "LLVMCC_EMITIR_FLAG" ./ {} \; > ./projects/test-suite/Makefile.tests:47: -$(LCC) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -S $< -o $@ $(LLVMCC_EMITIR_FLAG) > ./projects/test-suite/Makefile.tests:51: -$(LCXX) $(CPPFLAGS) $(CXXFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -S
2011 Sep 16
2
[LLVMdev] How to duplicate a function?
...lt;n; i++) v[i] = v[i-1] + v[i]; printf ("hahaha\n"); return 1; } Makefile ==================================================================================== LLVM_CONFIG?=llvm-config # location of the source # useful if you want separate source and object directories. SRC_DIR?=$(PWD) #ifndef VERBOSE # QUIET:=@ #endif COMMON_FLAGS=-Wall -Wextra #-fvisibility=hidden CFLAGS+=$(COMMON_FLAGS) $(shell $(LLVM_CONFIG) --cflags) CXXFLAGS+=$(COMMON_FLAGS) $(shell $(LLVM_CONFIG) --cxxflags) #ifeq ($(shell uname),Darwin) #LOADABLE_MODULE_OPTIONS=-bundle -undefined dynamic_loo...
2011 Jan 07
1
[LLVMdev] about NDEBUG
Hi Mr/Mz, I have built and installed llvm-2.8 in debug mode using: >SRC_DIR/configure --prefix=INS_DIR --enable-debug-runtime --disable-optimized --enable-debug-symbols >make install It seems the NDEBUG controls a lot of print-out of debug information, by using DEBUG() or dbgs(). And it is said that NDEBUG is in enabled in debug mode, but I find it does not work an...
2011 Jan 08
2
[LLVMdev] DragonEgg on FreeBSD
Hi, folks I have made DragonEgg supports FreeBSD 8.1. May someone like to a look? :) Regards, chenwj -- Wei-Ren Chen (陳韋任) Parallel Processing Lab, Institute of Information Science, Academia Sinica, Taiwan (R.O.C.) Tel:886-2-2788-3799 #1667
2011 Jan 08
0
[LLVMdev] DragonEgg on FreeBSD
Hi chenwj, > I have made DragonEgg supports FreeBSD 8.1. May someone like > to a look? :) great! Does it work ok? If you had to make any changes to dragonegg, please send patches to the mailing list. If there are some tricks needed to get it to build, please explain what you had to do and these can be mentioned in the dragonegg README and on the web-site. Ciao, Duncan.
2011 Jan 09
1
[LLVMdev] DragonEgg on FreeBSD
...--- --- Makefile.orig 2011-01-08 12:39:35.480184745 +0800 +++ Makefile 2011-01-08 12:40:58.569064365 +0800 @@ -52,7 +52,8 @@ -MD -MP \ -DIN_GCC -DREVISION=\"$(REVISION)\" \ -DGCC_MAJOR=$(GCC_MAJOR) -DGCC_MINOR=$(GCC_MINOR) \ - -I$(SRC_DIR) -I$(GCC_PLUGIN_DIR)/include + -I$(SRC_DIR) -I$(GCC_PLUGIN_DIR)/include \ + -I/usr/local/include LD_OPTIONS+=$(LDFLAGS) $(shell $(LLVM_CONFIG) --ldflags) -------------------------------------------------------------------------------- And you should make a freebsd directo...
2001 Aug 13
1
rsync+ patch
rsync+ is ready to go onto HEAD. Could Jos or somebody else who's used the feature before please prepare a few paragraphs for the manpage explaining how they work? Either send a patch to the .yo files or just plain text. Thanks, -- Martin
2002 Sep 20
1
Install with 64-bit GCC 3.2 : FIX (PR#2049)
I was able to get it all to compile by altering the src_dir/etc/Makeconf file so that the shared lib LD flags variables contain -m64 SHLIB_CXXLDFLAGS = -G -m64 SHLIB_LDFLAGS = -G -m64 these only had "-G" by default. Dunno why they dont pick them up as part of the standard configure though - one for you I guess ! -- Regards, ----------------...
2002 Oct 16
2
HELP !!! Problem with file timestamps updating "weird" during rsync data pull
...he time stamp sometimes gets updated as just "Oct 16 2002" I'm having problems with Orca dying for no good reason or it remaining running but it just stops graphing. This timestamp thing is the closest thing I can find to a problem right now. I'm calling rsync like this: SRC_DIR=${LOGIN}@${SRC}:/local/home/perfboy/orca/var/orca/orcallator/${HOSTNAME}/ DST_DIR=/local/home/perfboy/orca/var/orca/orcallator/${HOSTNAME} rsync -a -q --delete -essh ${SRC_DIR} ${DST_DIR} Any idea why rsync might be doing this ? -- ...........................................................
2011 Jan 10
1
[LLVMdev] About NDEBUG (Cont)
...ing symbols, it means that checking (aka assertions) are disabled. Probably it should be renamed to NASSERT Ciao, Duncan. > Looking forwards to your reply. > > > > > > Hi Li Qingan, > >> I have built and installed llvm-2.8 in debug mode using: >> >> >SRC_DIR/configure --prefix=INS_DIR --enable-debug-runtime --disable-optimized >> --enable-debug-symbols >> >> >make install >> >> >> It seems theNDEBUGcontrols a lot of print-out of debug information, by using >> DEBUG() or dbgs(). >> >> And it i...
2011 Jan 16
2
[LLVMdev] About test suits Cont1
*[qali at qali llvm-2.8-rev]$ find . -exec grep -n "LLVMCC_EMITIR_FLAG" ./ {} \;* ./projects/test-suite/Makefile.tests:47: -$(LCC) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -S $< -o $@ $(LLVMCC_EMITIR_FLAG) ./projects/test-suite/Makefile.tests:51: -$(LCXX) $(CPPFLAGS) $(CXXFLAGS) $(LOPTFLAGS) $(X_TARGET_FLAGS) -S $< -o $@ $(LLVMCC_EMITIR_FLAG)
2005 Jun 18
2
[LLVMdev] The configure script seems to strip some / from path
Hi LLVMers, The root of my SRC_DIR is: /home/hb/projects/src/llvm-1/llvm/ and the root of my OBJ_DIR is: /home/hb/projects/build/FC1/llvm-1-1. However, the configure script seems to have stripped some of the / from the paths: Makefile.common:63: /home/hb/projects/buildFC1llvm-1-1/Makefile.config: No such file or directory Makefil...