Sponsored Content
Top Forums Programming syntax error while compiling in gcc Post 98538 by matrixmadhan on Thursday 9th of February 2006 03:13:26 AM
Old 02-09-2006
else you could do it this way,

Code:
struct  Image
{
int lenght;
int height;
} ;

struct ShapeImage
{
struct Image image[10];
};

i dont think the problem is due to this,

could you please post ur code and the error message that you are receiving?
 

10 More Discussions You Might Find Interesting

1. Programming

beginner at C: Need help compiling/linking with gcc

I'm trying to do something fairly simple but keep getting frustrating messages.. Here it is: I have 3 files: init.h <header> init.c <#include <curses.h> and "init.h"> main.c <#include "init.h"> now, how can I compile my main.c using gcc? ( I have a hard time making the init.o) ... (1 Reply)
Discussion started by: My_Name
1 Replies

2. UNIX for Dummies Questions & Answers

errors compiling gcc 4.2.1

Hello, I have never had a successful compile on the 2.6 kernel. On every arch in which I try to compile gcc I get either "i686-pc-cygwin-ar command not found or "i686-suse-linux-ar command not found. This always happens during the make process after configure checks for ar and finds it's just ar.... (2 Replies)
Discussion started by: kwa71
2 Replies

3. Programming

gcc compiling with -DUSE_LONGLONG

Sorry for a silly question. I a program that need to compile with -DUSE_LONGLONG to turn on the long Int as the document of that program said so, but I really don't know how to do this. I normally do this: ./configure make make install and it works fine. But I don't know how to compile... (2 Replies)
Discussion started by: hiepng
2 Replies

4. Programming

probs compiling with gcc + lpthread

Im trying to write a program atm which uses mutexes to control thread access to a certain code section ( the critical section). However, whenever I compile the code using gcc I get the following message from gcc Unresolved text symbol "pthread_mutex_lock" Unresolved text symbol... (1 Reply)
Discussion started by: JamesGoh
1 Replies

5. Solaris

Problem compiling Samba 3.5.1 on Solaris 10 with gcc (3.4.6)

I'm getting this error when 'Linking shared library bin/libtalloc.so.2'... anyone know what's up here? Using CFLAGS = -O -I. -I/source/samba-3.5.1/source3 -I/source/samba-3.5.1/source3/../lib/popt -I/source/samba-3.5.1/source3/iniparser/src -Iinclude -I./include -I. -I. -I./../lib/replace... (6 Replies)
Discussion started by: son_t
6 Replies

6. Programming

gcc compiling error

I am using gcc to compile c objects on solaris 5.10 and hit the following error messages: /usr/include/sys/vfs.h:323: error: syntax error before "statvfs64_t" /usr/include/sys/vfs.h:334: error: syntax error before "statvfs64_t" gmake: *** Error 1 The c program files were copied over from... (3 Replies)
Discussion started by: med7006
3 Replies

7. Programming

Problem with static compiling - GCC

Hi guys. I want to compile three files: gcc -static main.c fib.c fib.h it is pure C i mean i use standard C library. but it gives me this error: /usr/bin/ld: cannot find -lc collect2: ld returned 1 exit status what should i do? (4 Replies)
Discussion started by: majid.merkava
4 Replies

8. Programming

Compiling a 64 bits program using gcc

Hi Everyone, I can ask what is the option to compile a 64 bits program using gcc. I have looked everywhere but can't find it. Before I used to use cc and the -q64 flag was the option to generate the 64 bits binary. Can anyone tell me what is the flags when using gcc. Thanks...... (3 Replies)
Discussion started by: arizah
3 Replies

9. UNIX for Advanced & Expert Users

Compiling libcdio-paranoia, gcc found - C compiler doesnt work

Heyas I'm currently trying to make a fresh build from scratch/source of FFMPEG. This said, it brings quite a tail with it, so the use of a script was very obvious. Anyway, i'm currently stuck at named package. Lets ignore the tarball/download line, as the error is after. Commands... (0 Replies)
Discussion started by: sea
0 Replies

10. UNIX for Beginners Questions & Answers

Compiling GCC 6.3.0 - Error with Library

First of all -- thanks for being patient with me. I hope I'm submitting this correctly. Also I haven't done UNIX Admin since the early 1990's. I'm actually a DBA. But, since I'm the one in the office with the UNIX experience, I'm the SA. I haven't been able to compile GCC 6.3.0 which I need... (9 Replies)
Discussion started by: PJ_Namias
9 Replies
XvCreateImage(3)						  libXv Functions						  XvCreateImage(3)

NAME
XvCreateImage, XvShmCreateImage - create an XvImage SYNOPSIS
#include <X11/extensions/Xvlib.h> XvImage * XvCreateImage (Display *dpy, XvPortID port, int id, char *data, int width, int height); XvImage * XvShmCreateImage (Display *dpy, XvPortID port, int id, char *data, int width, int height, XShmSegmentInfo *shminfo); ARGUMENTS
dpy Specifies the connection to the X server. port Specifies the port the XvImage will be used with. id Specifies the format of the image to be created by the XvImageFormatValues id. data Specifies the image data. width, height Specifies the desired width and height of the image. DESCRIPTION
XvCreateImage(3) is similar to XCreateImage(3). XvShmCreateImage(3) is similar to XShmCreateImage(3). The library will allocate the XvIm- age structure and fill out all fields except for data. Width and height may be enlarged in some YUV formats. The size of the data buffer that needs to be allocated will be given in the data_size field in the XvImage. Image data is not allocated by this function. The client may pass a pointer to the preallocated memory as data or may allocate the memory and fill in the XvImage structure's data field after the data_size field has been filled out by the server. The XvImage structure may be freed by XFree(3). Shared memory segments are attached/detached with XShmAttach(3)/XShmDetach(3). RETURN VALUES
XvImage has the following structure: typedef struct { int id; int width, height; int data_size; int num_planes; int *pitches; int *offsets; char *data; XPointer obdata; } XvImage; id A descriptor for the format from the XvImageFormatValues structure returned by XvListImageFormats(3). width, height The width and height of the image in pixels. data_size The size of the data buffer in bytes. num_planes The number of image planes. pitches An array of size num_planes indicating the scanline pitch in bytes. Each plane may have a different pitch. offsets An array of size num_planes indicating the byte offset from data to the start of each plane. data A pointer to the start of the data buffer. obdata A private field for holding SHM info. This field will be set up by the client libraries so the programmer will generally need not be concerned with this field. DIAGNOSTICS
[XvBadPort] Generated if the requested port does not exist. [XvBadAlloc] Generated if the X server was unable to allocate resources required to complete the operation. [BadMatch] Generated if incompatible arguments were supplied, such as a port that isn't capable of displaying XvImages. SEE ALSO
XvListImageFormats(3), XCreateImage(3), XShmCreateImage(3), XShmAttach(3), XShmDetach(3). X Version 11 libXv 1.0.7 XvCreateImage(3)
All times are GMT -4. The time now is 06:51 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy