Displaying 14 results from an estimated 14 matches for "refptr".
2004 Sep 15
1
Theora mcomp tuning...
...;
- unsigned char *DiffPtr;
+ const unsigned char *DiffPtr;
/* Loop expanded out for speed. */
DiffPtr = DataPtr;
@@ -382,8 +388,8 @@
}
ogg_uint32_t GetMBInterError (CP_INSTANCE *cpi,
- unsigned char * SrcPtr,
- unsigned char * RefPtr,
+ const unsigned char * SrcPtr,
+ const unsigned char * RefPtr,
ogg_uint32_t FragIndex,
ogg_int32_t LastXMV,
ogg_int32_t LastYMV,
@@ -397,8 +403,8...
2014 Jul 19
1
patch about mingwbuild 4.9.1
recently I used gcc 4.9.1 (http://sourceforge.net/projects/mingw-w64/files/Toolchains targetting Win64/Personal Builds/mingw-builds/)on windows to build R,but failed when link R.dll ,it report linker status 5.
after some digging, I found when use gcc 4.9.1 64 bit on windows there are lots of .refptr.*(* is r function name) in R.def, which lead build fail.so I add a simple path to src/gnuwin32/Makefile:
Index: Makefile
===================================================================
--- Makefile(版本 66200)
+++ Makefile(工作副本)
@@ -148,7 +148,7 @@
ifeq "$(WIN)" "64"
R.dll:...
2015 Mar 10
1
Notes on building a gcc toolchain for Rtools (but not multilib)
...o compile because it could not find execinfo.h
* I worked around this by using CXXFLAGS=-DWIN32 -std=c++11
* CXXFLAGS=-std=gnu++11 also works around this
* Maybe Rcpp needs to guard against this?
+ the package could not be loaded because some of the object files
contain symbols named .refptr.* and .weak.*, which should be excluded
from the exports list
* To work around this, put this line in .R\Makevars: NM_FILTER = |
sed -e '/\.refptr\./d; /\.weak\./d'
- Hsiu-Khuern
2015 Mar 09
5
Notes on building a gcc toolchain for Rtools (but not multilib)
...2-
# BINPREF64 = x86_64-w64-mingw32-
+BINPREF64 =
# Others use a -m64 or -m32 option to select architectures
# M_ARCH =
@@ -64,6 +65,7 @@
# 32- or 64-bit Windows?
# WIN = 32
+WIN = 64
# The gcc 4.9.2 64 bit toolchain is set up for the 'medium code'
model and needs
# to remove the .refptr entries from the exports list; this is the default
@@ -135,12 +137,12 @@
# Full paths of extra DLLs that need to be shipped
# e.g
# DLLs32 = c:/R/bin/pthreadGC2-w32.dll
-# DLLs64 = c:/R/bin64/pthreadGC2-w64.dll
+DLLs64 = c:/MinGW/bin/pthreadGC2.dll
# DLLs32 =
# DLLs64 =
# Define this to 1 if...
2015 Mar 09
0
Notes on building a gcc toolchain for Rtools (but not multilib)
...; # Others use a -m64 or -m32 option to select architectures
> # M_ARCH =
> @@ -64,6 +65,7 @@
>
> # 32- or 64-bit Windows?
> # WIN = 32
> +WIN = 64
>
> # The gcc 4.9.2 64 bit toolchain is set up for the 'medium code'
> model and needs
> # to remove the .refptr entries from the exports list; this is the default
> @@ -135,12 +137,12 @@
> # Full paths of extra DLLs that need to be shipped
> # e.g
> # DLLs32 = c:/R/bin/pthreadGC2-w32.dll
> -# DLLs64 = c:/R/bin64/pthreadGC2-w64.dll
> +DLLs64 = c:/MinGW/bin/pthreadGC2.dll
> # DLLs32 =...
2018 Feb 09
3
R Compilation gets stuck on Windows 64
...CH = 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 .refptr and .weak entries from the exports list; this is
the default
# when WIN = 64, with blank for WIN = 32:
NM_FILTER = | $(SED) -e '/[.]refptr[.]/d' -e '/[.]weak[.]/d'
# We normally link directly against DLLs,
# but this macro forces the use of import libs
# Has been needed for some ve...
2004 Aug 24
5
MMX/mmxext optimisations
quite some speed improvement indeed.
attached the updated patch to apply to svn/trunk.
j
-------------- next part --------------
A non-text attachment was scrubbed...
Name: theora-mmx.patch.gz
Type: application/x-gzip
Size: 8648 bytes
Desc: not available
Url : http://lists.xiph.org/pipermail/theora-dev/attachments/20040824/5a5f2731/theora-mmx.patch-0001.bin
2018 Feb 09
0
R Compilation gets stuck on Windows 64
...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 .refptr and .weak entries from the exports list; this is
> the default
> # when WIN = 64, with blank for WIN = 32:
> NM_FILTER = | $(SED) -e '/[.]refptr[.]/d' -e '/[.]weak[.]/d'
>
> # We normally link directly against DLLs,
> # but this macro forces the use of import libs...
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
[Bug 112070] New: H/W Acceleration sufficiently buggy on Debian to hard lock machine GeForce 7600 GO
2019 Oct 19
33
[Bug 112070] New: H/W Acceleration sufficiently buggy on Debian to hard lock machine GeForce 7600 GO
https://bugs.freedesktop.org/show_bug.cgi?id=112070
Bug ID: 112070
Summary: H/W Acceleration sufficiently buggy on Debian to hard
lock machine GeForce 7600 GO
Product: xorg
Version: unspecified
Hardware: x86-64 (AMD64)
OS: other
Status: NEW
Severity: critical
Priority: not
2015 Mar 10
3
Notes on building a gcc toolchain for Rtools (but not multilib)
Hi Duncan,
On Mon, Mar 9, 2015 at 10:40 AM, Duncan Murdoch
<murdoch.duncan at gmail.com> wrote:
> On 09/03/2015 11:07 AM, Hsiu-Khuern Tang wrote:
>>
>> On Mon, Mar 9, 2015 at 3:50 AM, Duncan Murdoch <murdoch.duncan at gmail.com>
>> wrote:
>> > On 08/03/2015 10:02 PM, Hsiu-Khuern Tang wrote:
>> >> Hi,
>> >>
>> >> [This
2023 Aug 31
1
Problems with installing R packages from source and running C++ in R, even on fresh R installation
? Thu, 31 Aug 2023 11:57:06 +0000
Christophe Bousquet <chr_bousquet at protonmail.com> ?????:
> > tools::Rcmd('SHLIB -n hello.c')
> > tools::Rcmd('SHLIB hello.c')
> >
> > What do the commands print? Does the second command fail?
>
> I basically get no output from the two commands, apart from a new
> blank R prompt.
So starting a new
2023 Aug 31
1
Problems with installing R packages from source and running C++ in R, even on fresh R installation
...o.o -L"C:/rtools43/x86_64-w64-mingw32.static.posix/lib/x64" -L"C:/rtools43/x86_64-w64-mingw32.static.posix/lib" -L"C:/PROGRA~1/R/R-43~1.1/bin/x64" -lR ; \
else \
echo EXPORTS > tmp.def; \
nm hello.o | sed -n 's/^.* [BCDRT] / /p' | sed -e '/[.]refptr[.]/d' -e '/[.]weak[.]/d' | sed 's/[^ ][^ ]*/"&"/g' >> tmp.def; \
echo gcc -shared -s -static-libgcc -o hello.dll tmp.def hello.o -L"C:/rtools43/x86_64-w64-mingw32.static.posix/lib/x64" -L"C:/rtools43/x86_64-w64-mingw32.static.posix/lib&q...
2018 Feb 09
1
R Compilation gets stuck on Windows 64
...-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 .refptr and .weak entries from the exports list; this is
>> the default
>> # when WIN = 64, with blank for WIN = 32:
>> NM_FILTER = | $(SED) -e '/[.]refptr[.]/d' -e '/[.]weak[.]/d'
>>
>> # We normally link directly against DLLs,
>> # but this macro forces...