Newbie Developer Forum

This forum will be closed shortly. Please post all development related questions and/or discussion on the Haiku Development, or Haiku 3rd party Development mailing lists.

help compiling web+?

Forum thread started by khallebal on Sun, 2011-03-20 12:20

hi all
i'm trying to build web+ but some reason libjavascript.so doen't compile giving me this error msg

~/Desktop/trunk> jam -q libjavascriptcore.so
...found 770 target(s)...
...updating 1 target(s)...
warning: using independent target /boot/home/config/lib/
Link WebKitBuild/Debug/JavaScriptCore/libjavascriptcore.so
/boot/develop/abi/x86/gcc4/tools/gcc-4.4.4-haiku-101111/lib/gcc/i586-pc-haiku/4.4.4/../../../../i586-pc-haiku/bin/ld: cannot find -licuuc
collect2: ld returned 1 exit status

any idea what's going on?

cheers

Still the Kernel programing kit? (From the Programing the Be operating system)

Forum thread started by axizhe on Sat, 2011-03-19 15:09

Hello, i have a doubt if i want to interact with the kernel directly, there still the Kernel kit as in Be?.. Sorry if the wrong place, i dont know how to mail this to developers (very newbie)

A little help understanding gallium

Forum thread started by axizhe on Fri, 2011-03-18 16:38

Hello to everyone:

My question is, im reading all about the gallium project, and how it works, i think i get an idea of it, but i dont understand how it get connected with the haiku kernel, i mean, does haiku have a drm module or something like linux?..
i know (or think) winsys module should work with some libdrm.xxx or with some lib like that.. im right?...

thanks... axiz.

pd: sorry about my english...

What are the differences observed in a Jamfile if we have to use locale kit?

Forum thread started by Eva on Sun, 2011-01-09 09:20

What are the differences observed in a Jamfile if we have to use locale kit?
Thx in advance.

Another question related to B_TRANSLATED

Forum thread started by Eva on Sun, 2011-01-09 03:15

If I use B_TRANSLATE("new") to create the label of a new menu item,
what would item->Label() return? Do I need to use some kind of inverse
operation for B_TRANSLATE macro in order to get "new"?

Thanks in advance!

CLI vs GUI?

Forum thread started by Earl Colby Pottinger on Sat, 2011-01-08 03:35

How do I tell if a program was started from the CLI or GUI?

Undefined Referecnce to Constructor

Forum thread started by stellarpower on Wed, 2011-01-05 18:07

Hi,,

I'm trying to get the hang of basic OOP, so I made this pointless code as a startinbg point:

#include <stdio.h>
 
 
class rectangle
{
	public:
 
	rectangle(void);
	~rectangle(void);
 
...more function declarations
 
};
 
 
void main()
{
 
rectangle rocket;
	return 0;
}

When I try to compile it, it tells me that there are undefined references to rectangle::rectangle and rectangle::~rectangle. If I remove the constructor and destructor or include some code, it doesn't make a fuss. I know they're not necessary, but why is it doing this?

Syndicate content