search for: svnversion

Displaying 20 results from an estimated 46 matches for "svnversion".

2009 May 18
3
[LLVMdev] [PATCH] llvm-config: add svn revision to --version
...not sure what's the best way to fix this. I guess we need to add a > target which is always run to llvm-config's Makefile ... This is easy: see the logic for regenerating llvm-config when the file that contains the library dependencies changes. Why do you use `svn info' and not `svnversion'? And this brings another question: how do you deal with modified working copies? -- Óscar Fuentes Desarrollo de Software
2008 Apr 29
0
non-digits in svnversion output mess up windows build if (PR#11340)
...> I tried for the first time to build R from source on Windows, where I > got the source code via svn. Per the Installation and Administration > manual, I altered src\gnuwin32\MkRules so it had the the locally > correct paths to HTML Help Workshop and Inno Setup 5. I also set > USE_SVNVERSION=yes, as suggested in MkRules itself. Then, while in > the directory src/gnuwin32 I ran 'make all recommended' and got an > error from windres very early in the build: > > E:\R\R-svn\r-devel\src\gnuwin32>make all recommended > make --no-print-directory -C front-ends R...
2008 Apr 29
1
non-digits in svnversion output mess up windows build if USE_SVNVERSION=yes (PR#11339)
...: (NULL) (70.98.76.47) I tried for the first time to build R from source on Windows, where I got the source code via svn. Per the Installation and Administration manual, I altered src\gnuwin32\MkRules so it had the the locally correct paths to HTML Help Workshop and Inno Setup 5. I also set USE_SVNVERSION=yes, as suggested in MkRules itself. Then, while in the directory src/gnuwin32 I ran 'make all recommended' and got an error from windres very early in the build: E:\R\R-svn\r-devel\src\gnuwin32>make all recommended make --no-print-directory -C front-ends Rpwd make -C ../../inclu...
2008 Apr 29
0
non-digits in svnversion output mess up windows build if (PR#11341)
...rom clean source tree, so you cannot even test a proposed change. I ran into it because I had to change src/gnuwin32/MkRules to say that I put Inno Setup in its standard place, "C:/Program Files/Inno Setup 5", and not in "C:/packages/inno". I guess I don't need to have USE_SVNVERSION=yes, but doing that means that version$"svn rev" shows me I have a non-standard version: that will show the svn version as something like "123M" or "123:145S". It is too bad it only is available on the Windows build. I think it would be a good thing to have on the n...
2008 Jul 10
0
[LLVMdev] Including svn version number in --version output
...vn revision number, but I do not want to > enforce "svn update" wrapper usage, if possible, to store svn revision > number somewhere. And I do not want to reuse build number. I didn't say to force people to use svn update. I'm suggesting to use the svn revision number (via svnversion) as the build number. So that exactly as you are doing in your patch to Makefile.in, but I'm saying to use that svnversion number in the VERSUFFIX. > Let's take example of checker build Ted produces on cfe-dev list. He > regularly announces checker builds at http://clang.llvm.org/S...
2010 Aug 31
2
[LLVMdev] [PATCH] New LLVMGetVersion function allowing applications to get LLVM version through the API directly from libLLVM.so
Please check in this patch. Thanks, Yuri -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: patch-version URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100831/632e9759/attachment.ksh>
2008 Jul 10
1
[LLVMdev] Including svn version number in --version output
On Jul 10, 2008, at 11:17 AM, Tanya M. Lattner wrote: > > Where exactly are you suggesting to put the svnversion number in the > version string then? I forgot to include version.c change. Right now, I just append svnversion number at the end. - Devang Index: version.c =================================================================== --- version.c (revision 53385) +++ version.c (working copy) @@ -33,...
2007 Dec 30
1
eliminating GNU Make features in include/Makefile.am
I just noticed this warning from the autoreconf portion of the buildbot log: autoreconf: running: automake --no-force include/Makefile.am:9: shell unset LANG && svnversion -n $(top_srcdir: non-POSIX variable name include/Makefile.am:9: (probably a GNU make extension) include/Makefile.am:10: shell if test "$(SVNREV: non-POSIX variable name include/Makefile.am:10: (probably a GNU make extension) I think that the $(shell ...) construct is actually a GNU Make featu...
2008 Jul 10
2
[LLVMdev] Including svn version number in --version output
On Jul 9, 2008, at 8:47 PM, Tanya Lattner wrote: > > On Jul 9, 2008, at 6:13 PM, Devang Patel wrote: > >> >> On Jul 9, 2008, at 6:13 PM, Tanya M. Lattner wrote: >> >>> >>> Why not set the VERSUFFIX to be " (Based on Apple Inc. build 5555) >>> (LLVM >>> rXXXX)" >>> >>> Where you set the revision number?
2013 Nov 04
1
Makefile fix for tarball compilation
...@GITREV=`git describe --tags 2>/dev/null | sed 's/^v\([0-9]\)/\1/' `; \ + @GITREV=`git describe --tags 2>/dev/null | sed 's/^v\([0-9]\)/\1/' ` || \ + GITREV=""; \ if [ -z "$$GITREV" ]; \ - then SVNREV=`LANG=C svnversion -n $(top_srcdir) 2>/dev/null`; \ + then SVNREV=`LANG=C svnversion -n $(top_srcdir) 2>/dev/null` || \ + SVNREV=""; \ if [ -z "$$SVNREV" -o "$$SVNREV" = "exported" ]; \ then N...
2008 Mar 27
1
[nut-commits] svn commit r1207 - in trunk: . include
Hi Charles, while finishing the Testing release, I faced an autoreconf issue on Testing, linked to the below change (to its non application on Testing in fact): include/Makefile.am:9: shell unset LANG && svnversion -n $(top_srcdir: non-POSIX variable name include/Makefile.am:9: (probably a GNU make extension) include/Makefile.am:10: shell if test "$(SVNREV: non-POSIX variable name include/Makefile.am:10: (probably a GNU make extension) Obviously backporting the include/Makefile.am from trunk solves this...
2008 Jul 10
2
[LLVMdev] Including svn version number in --version output
...annoyingly pedantic about it you could require a > network connection for the build, check svn info and svn status and > then set the version string based on whether or not there are local > patches applied to the checkout - but that would probably fall under > neurotic :) Using svnversion (as the original patch does) does exactly this. It outputs the rev number, postfixed with "M" (for Modified) when there are local changes. This does not require a network connection, however, svn keeps a local clean copy of everything (as opposed to CVS). Gr. Matthijs -------------- ne...
2008 Jul 10
4
[LLVMdev] Including svn version number in --version output
...=============================== --- Makefile.in (revision 53385) +++ Makefile.in (working copy) @@ -802,6 +802,9 @@ DEVPHASE_s := "\"$(if $(DEVPHASE_c), ($(DEVPHASE_c)))\"" DATESTAMP_s := "\"$(if $(DEVPHASE_c), $(DATESTAMP_c))\"" +SVNVER_c := $(shell svnversion $(abs_srcdir) ) +SVNVER_s := "\"$(if $(SVNVER_c), $(SVNVER_c))\"" + # Shorthand variables for dependency lists. TARGET_H = $(TM_H) target.h insn-modes.h MACHMODE_H = machmode.h mode-classes.def insn-modes.h @@ -2048,9 +2051,11 @@ dumpvers: dumpvers.c -version.o: versio...
2012 Dec 26
2
Can't build kernel with ndis
...ice ndis device wlan which I have: device wlan # 802.11 support options NDISAPI # This is in the hope of enabling Hiro USB wireless adapter device ndis Error message, final lines of buildkernel log file, are MAKE=make sh /usr/src/sys/conf/newvers.sh SANDY /usr/local/bin/svnversion cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -g -Wall -Wred undant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointe r-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wm issing-include-dirs -fdiagnostics-show-option -nostdin...
2008 Apr 19
1
nondigits in R_FILEVERSION mess up Windows build
I tried for the first time to build R from source on Windows, where I got the source code via svn. Per the Installation and Administration manual, I altered src\gnuwin32\MkRules so it had the the locally correct paths to HTML Help Workshop and Inno Setup 5. I also set USE_SVNVERSION=yes, as suggested in MkRules itself. Then, while in the directory src/gnuwin32 I ran 'make all recommended' and got an error from windres very early in the build: E:\R\R-svn\r-devel\src\gnuwin32>make all recommended make --no-print-directory -C front-ends Rpwd make -C ../../inclu...
2009 May 18
0
[LLVMdev] [PATCH] llvm-config: add svn revision to --version
Óscar Fuentes wrote: > Why do you use `svn info' and not `svnversion'? bad habit. I'm not very familiar with svnversion and its output. > And this brings another question: how do you deal with modified > working > copies? We could add a M or "dirty" to the revision number. But I don't know how this would affect things like &quot...
2016 Oct 22
2
Error while building llvm - need suggestion
Hello, I got a problem while building llvm using cmake version 3.7 following the instructions in " http://clang.llvm.org/get_started.html ". After building for 56% it's displaying the error "make[2]: *** No rule to make target `/GetSVN.cmake', needed by `tools/clang/lib/Basic/SVNVersion.inc'. Stop. " I did notice the presence of GetSVN.cmake in the system path /LibFuzzer/llvm/cmake/modules. Is there something wrong in what I did, could you please let me know ! -- Thanks & Regards -------------- next part -------------- An HTML attachment was scrubbed... URL: <ht...
2008 Jul 10
0
[LLVMdev] Including svn version number in --version output
...t; --- Makefile.in (revision 53385) > +++ Makefile.in (working copy) > @@ -802,6 +802,9 @@ > DEVPHASE_s := "\"$(if $(DEVPHASE_c), ($(DEVPHASE_c)))\"" > DATESTAMP_s := "\"$(if $(DEVPHASE_c), $(DATESTAMP_c))\"" > > +SVNVER_c := $(shell svnversion $(abs_srcdir) ) > +SVNVER_s := "\"$(if $(SVNVER_c), $(SVNVER_c))\"" > + > # Shorthand variables for dependency lists. > TARGET_H = $(TM_H) target.h insn-modes.h > MACHMODE_H = machmode.h mode-classes.def insn-modes.h > @@ -2048,9 +2051,11 @@ > > dum...
2015 Jan 16
1
Error installing 'rgdal' on Centos 7
...1.5 Mb) URL abierta ================================================== downloaded 1.5 Mb * installing *source* package ?rgdal? ... ** package ?rgdal? successfully unpacked and MD5 sums checked configure: CC: gcc -m64 -std=gnu99 configure: CXX: g++ -m64 configure: rgdal: 0.9-1 checking for /usr/bin/svnversion... yes configure: svn revision: 518 configure: gdal-config: gdal-config checking gdal-config usability... ./configure: line 2119: gdal-config: command not found no Error: gdal-config not found The gdal-config script distributed with GDAL could not be found. If you have not installed the GDAL librar...
2015 Jan 16
2
[R-sig-Geo] Error installing 'rgdal' on Centos 7
...1.5 Mb) URL abierta ================================================== downloaded 1.5 Mb * installing *source* package ?rgdal? ... ** package ?rgdal? successfully unpacked and MD5 sums checked configure: CC: gcc -m64 -std=gnu99 configure: CXX: g++ -m64 configure: rgdal: 0.9-1 checking for /usr/bin/svnversion... yes configure: svn revision: 518 configure: gdal-config: gdal-config checking gdal-config usability... ./configure: line 2119: gdal-config: command not found no Error: gdal-config not found The gdal-config script distributed with GDAL could not be found. If you have not installed the GDAL librar...