Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 08 Jun 2018 00:05:51 +0000
From:      bugzilla-noreply@freebsd.org
To:        emulation@FreeBSD.org
Subject:   [Bug 228790] www/flashplayer www/nspluginwrapper NSPlugin Viewer error: missing connection path argument
Message-ID:  <bug-228790-4077-P08wcRAS1v@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-228790-4077@https.bugs.freebsd.org/bugzilla/>
References:  <bug-228790-4077@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D228790

Jung-uk Kim <jkim@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jkim@FreeBSD.org

--- Comment #1 from Jung-uk Kim <jkim@FreeBSD.org> ---
It seems 32-bit Linuxualtor is broken on head somehow.

% cat test.c
#include <stdio.h>

int
main(int argc, char **argv)
{
        int i;

        for (i =3D 0; i < argc; i++)
                printf("%s\n", argv[i]);
        return (0);
}

When it is compiled on CentOS 6 with "cc -m32 test.c" and copied to FreeBSD
head:

% file a.out
a.out: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically
linked, interpreter /lib/ld-linux.so.2, for GNU/Linux 2.6.18,
BuildID[sha1]=3Da84394f2d5353b0997b10b7bcbc45c5a6c3763ed, not stripped
% ./a.out

% ./a.out 1 2 3




Note 64-bit Linuxulator is working as expected.

% file a.out
a.out: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically lin=
ked,
interpreter /lib64/ld-linux-x86-64.so.2, for GNU/Linux 2.6.18,
BuildID[sha1]=3D26253988b4124298f815efa90e820f895ae3e295, not stripped
% ./a.out
./a.out
% ./a.out 1 2 3
./a.out
1
2
3

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-228790-4077-P08wcRAS1v>