Current problem reports assigned to freebsd-emulation@FreeBSD.org

2010-12-27 Thread FreeBSD bugmaster
Note: to view an individual PR, use:
  http://www.freebsd.org/cgi/query-pr.cgi?pr=(number).

The following is a listing of current problems submitted by FreeBSD users.
These represent problem reports covering all versions including
experimental development code and obsolete releases.


S Tracker  Resp.  Description

o kern/153243  emulation  [ibcs2] Seg fault whne running COFF binary using iBCS2
o ports/151714 emulation  print/acroread9 not usable due to lack of support in t
a kern/150186  emulation  [parallels] [panic] Parallels Desktop: CDROM disconnec
o kern/149168  emulation  [linux] [patch] Linux sendmsg / recvmsg / etc fixes fo
o ports/148097 emulation  [patch] suggested addition to linux_base-* packages to
o ports/148096 emulation  emulators/linux_base-* can not be built from ports on 
o kern/147793  emulation  [vmware] [panic] cdrom handling, panic, possible race 
o kern/146237  emulation  [linux] Linux binaries not reading directories mounted
o kern/145024  emulation  [linux] [panic] kernel crash by linux.ko module with n
f kern/144763  emulation  [linux] [panic] Kernel panic when start linux binaries
o ports/142837 emulation  [patch] emulators/linux_base-* packages fails to insta
o kern/140156  emulation  [linux] cdparanoia fails to read drive data
f kern/138944  emulation  [parallels] [regression] Parallels no longer works in 
o kern/138880  emulation  [linux] munmap segfaults after linux_mmap2 stresstest
f ports/137332 emulation  add caution messages to some adobe products
s ports/136321 emulation  x11-toolkits/linux-pango: please update linux based po
o ports/135337 emulation  [PATCH] emulators/linux_base-f10: incorrect bash usage
s kern/133144  emulation  [linux] linuxulator 2.6 crashes with nvidias libGL.so.
o kern/129169  emulation  [linux] [patch] Linux Emulation ENOTCONN error using n
o kern/126232  emulation  [linux] Linux ioctl TCGETS (0x5401) always fails
f kern/99068   emulation  [linux] [patch] Linux emulator crashed by java, when c
o kern/86619   emulation  [linux] linux emulator interacts oddly with cp
a kern/72920   emulation  [linux]: path "prefixing" is not done on unix domain s
o kern/41543   emulation  [patch] [request] easier wine/w23 support
o kern/39201   emulation  [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu
o kern/36952   emulation  [patch] [linux] ldd(1) command of linux does not work
o kern/21463   emulation  [linux] Linux compatability mode should not allow setu
o kern/11165   emulation  [ibcs2] IBCS2 doesn't work correctly with PID_MAX 

28 problems total.

___
freebsd-emulation@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-emulation
To unsubscribe, send any mail to "freebsd-emulation-unsubscr...@freebsd.org"


GLIBCXX_3.4.11 with emulators/linux_base-f10

2010-12-27 Thread Emanuel Haupt
I'm trying to run a linux binary with the 'emulators/linux_base-f10'
base set. Unfortunately it requires GLIBCXX_3.4.11:

# ldd ./CCcam.x86 
./sometool:
./sometool: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.11' not found 
(required by ./sometool)
./sometool: exit status 1

It seems that I'm only one minor version short:

# strings /compat/linux/usr/lib/libstdc++.so.6 | grep GLIBCXX_3
GLIBCXX_3.4
GLIBCXX_3.4.1
GLIBCXX_3.4.2
GLIBCXX_3.4.3
GLIBCXX_3.4.4
GLIBCXX_3.4.5
GLIBCXX_3.4.6
GLIBCXX_3.4.7
GLIBCXX_3.4.8
GLIBCXX_3.4.9
GLIBCXX_3.4.10

How hard would it be to get GLIBCXX_3.4.11 support with
'emulators/linux_base-f10'? Is it a simple update or would it require
fundamental changes in the linuxulator?

Emanuel
___
freebsd-emulation@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-emulation
To unsubscribe, send any mail to "freebsd-emulation-unsubscr...@freebsd.org"


Re: GLIBCXX_3.4.11 with emulators/linux_base-f10

2010-12-27 Thread Boris Samorodov
On Mon, 27 Dec 2010 16:09:14 +0100 Emanuel Haupt wrote:

> I'm trying to run a linux binary with the 'emulators/linux_base-f10'
> base set. Unfortunately it requires GLIBCXX_3.4.11:

> # ldd ./CCcam.x86 
> ./sometool:
> ./sometool: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.11' not found 
> (required by ./sometool)
> ./sometool: exit status 1

> It seems that I'm only one minor version short:

> # strings /compat/linux/usr/lib/libstdc++.so.6 | grep GLIBCXX_3
> GLIBCXX_3.4
> GLIBCXX_3.4.1
> GLIBCXX_3.4.2
> GLIBCXX_3.4.3
> GLIBCXX_3.4.4
> GLIBCXX_3.4.5
> GLIBCXX_3.4.6
> GLIBCXX_3.4.7
> GLIBCXX_3.4.8
> GLIBCXX_3.4.9
> GLIBCXX_3.4.10

> How hard would it be to get GLIBCXX_3.4.11 support with
> 'emulators/linux_base-f10'?

You may try to replace libstdc++ from Fedora 10 with libstdc++ from
Fedora 11. It won't happen at the ports tree though.

> Is it a simple update or would it require
> fundamental changes in the linuxulator?

Someone should create Fedora 11/12 ports, do tests and only then
we'll see if changes in the linuxulator should be done.

-- 
WBR, bsam
___
freebsd-emulation@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-emulation
To unsubscribe, send any mail to "freebsd-emulation-unsubscr...@freebsd.org"


Re: GLIBCXX_3.4.11 with emulators/linux_base-f10

2010-12-27 Thread Emanuel Haupt
Boris Samorodov  wrote:
> On Mon, 27 Dec 2010 16:09:14 +0100 Emanuel Haupt wrote:
> 
> > I'm trying to run a linux binary with the 'emulators/linux_base-f10'
> > base set. Unfortunately it requires GLIBCXX_3.4.11:
> 
> > # ldd ./CCcam.x86 
> > ./sometool:
> > ./sometool: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.11' not
> > found (required by ./sometool) ./sometool: exit status 1
> 
> > It seems that I'm only one minor version short:
> 
> > # strings /compat/linux/usr/lib/libstdc++.so.6 | grep GLIBCXX_3
> > GLIBCXX_3.4
> > GLIBCXX_3.4.1
> > GLIBCXX_3.4.2
> > GLIBCXX_3.4.3
> > GLIBCXX_3.4.4
> > GLIBCXX_3.4.5
> > GLIBCXX_3.4.6
> > GLIBCXX_3.4.7
> > GLIBCXX_3.4.8
> > GLIBCXX_3.4.9
> > GLIBCXX_3.4.10
> 
> > How hard would it be to get GLIBCXX_3.4.11 support with
> > 'emulators/linux_base-f10'?
> 
> You may try to replace libstdc++ from Fedora 10 with libstdc++ from
> Fedora 11. It won't happen at the ports tree though.
> 
> > Is it a simple update or would it require
> > fundamental changes in the linuxulator?
> 
> Someone should create Fedora 11/12 ports, do tests and only then
> we'll see if changes in the linuxulator should be done.

Thanks, that did work. Unfortunately the program exits with:

Dec 27 22:46:17 myhost kernel: linux: pid 8561 (sometool): syscall ptrace not 
implemented

Emanuel
___
freebsd-emulation@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-emulation
To unsubscribe, send any mail to "freebsd-emulation-unsubscr...@freebsd.org"


Re: GLIBCXX_3.4.11 with emulators/linux_base-f10

2010-12-27 Thread Emanuel Haupt
Emanuel Haupt  wrote:
> Boris Samorodov  wrote:
> > On Mon, 27 Dec 2010 16:09:14 +0100 Emanuel Haupt wrote:
> > 
> > > I'm trying to run a linux binary with the
> > > 'emulators/linux_base-f10' base set. Unfortunately it requires
> > > GLIBCXX_3.4.11:
> > 
> > > # ldd ./CCcam.x86 
> > > ./sometool:
> > > ./sometool: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.11' not
> > > found (required by ./sometool) ./sometool: exit status 1
> > 
> > > It seems that I'm only one minor version short:
> > 
> > > # strings /compat/linux/usr/lib/libstdc++.so.6 | grep GLIBCXX_3
> > > GLIBCXX_3.4
> > > GLIBCXX_3.4.1
> > > GLIBCXX_3.4.2
> > > GLIBCXX_3.4.3
> > > GLIBCXX_3.4.4
> > > GLIBCXX_3.4.5
> > > GLIBCXX_3.4.6
> > > GLIBCXX_3.4.7
> > > GLIBCXX_3.4.8
> > > GLIBCXX_3.4.9
> > > GLIBCXX_3.4.10
> > 
> > > How hard would it be to get GLIBCXX_3.4.11 support with
> > > 'emulators/linux_base-f10'?
> > 
> > You may try to replace libstdc++ from Fedora 10 with libstdc++ from
> > Fedora 11. It won't happen at the ports tree though.
> > 
> > > Is it a simple update or would it require
> > > fundamental changes in the linuxulator?
> > 
> > Someone should create Fedora 11/12 ports, do tests and only then
> > we'll see if changes in the linuxulator should be done.
> 
> Thanks, that did work. Unfortunately the program exits with:
> 
> Dec 27 22:46:17 myhost kernel: linux: pid 8561 (sometool): syscall
> ptrace not implemented

I should have said that I'm on amd64. It seems that linux_ptrace is
only implemented for i386:

# find /usr/src/sys/ -name linux_ptrace.c
/usr/src/sys/i386/linux/linux_ptrace.c

Emanuel
___
freebsd-emulation@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-emulation
To unsubscribe, send any mail to "freebsd-emulation-unsubscr...@freebsd.org"