Hi all,

Looking for a code review of the proposed fix for bug #8030:

 http://defect.opensolaris.org/bz/show_bug.cgi?id=8030
 Integrate GNU Developer Tools v4.3.2 into the unbundleds directory.

Webrev is at:

 http://cr.opensolaris.org/~richb/pkg-8030-v1/

Local (internal) IPS repository is at:

 http://stard.sfbay.sun.com:28030

The project team have tested these packages. I also tested them with:

 $ pfexec pkg set-authority -P -O http://stard.sfbay.sun.com:28030 bug-8030
 $ pfexec pkg uninstall SUNWgccruntime SUNWgcc432 developer/gnu/gcc-dev-4
 $ pfexec pkg install developer/gnu/gcc-dev-4
 $ pfexec pkg set-authority -P opensolaris.org
 $ pfexec pkg unset-authority bug-8030


 $ cat hello_world.c
 #include <stdio.h>

 int
 main(int argc, char **argv)
 {
    printf("Hello World!\n");
 }

 $ gcc-4.3.2 -o hello_world hello_world.c
 $ ./hello_world
 Hello World!

 $ cat hello_world.cc
 #include <iostream>

 using namespace std;

 int main()
 {
    cout << "Hello World!" << endl;
    return 0;
 }

 $ g++-4.3.2 -o hello_world hello_world.cc
 $ ./hello_world
 Hello World!
 $

Thanks.
_______________________________________________
pkg-discuss mailing list
[email protected]
http://mail.opensolaris.org/mailman/listinfo/pkg-discuss

Reply via email to