10 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
Hi All,
i want to make a job as always running job so that whenever it recieve a input file the job should process the file. Please help me with this. (3 Replies)
Discussion started by: mahesh300182
3 Replies
2. Shell Programming and Scripting
hi
i am facing a strange error...
whenever i try to execute make file it gives the following error
bash-3.00$ make
usa0300uz1128
sh: syntax error at line 1: `end of file' unexpected
mksh: Fatal error: The command `if ; then echo "${COMMON}/src/rules/rules_11.2.0.3.2012Q3"; elif... (1 Reply)
Discussion started by: aishsimplesweet
1 Replies
3. Linux
hello,
i want to execute hello world using cross compiler ppc_4xx-gcc. i have this makefile:
CC= $(shell which ppc_4xx-gcc)
#CC=g++
CXXFLAGS=-cpp -Wall
LDFLAGS=
SOURCES=main.cpp hello.h
OBJECTS=$(SOURCES:.cpp=.o)
EXECUTABLE=hello
all: $(SOURCES)... (5 Replies)
Discussion started by: walidaydi
5 Replies
4. Shell Programming and Scripting
Hi,
I have written a small script from that iam appending the output to a file.If multiple users invoke the same script or if i invoke the same script n number of times (using &), the output file(ZZ/OUT) contains messup information.
#!/bin/bash
#
echo "Hello" >> /tmp/ZZ/OUT
sleep 10
echo... (4 Replies)
Discussion started by: blrguest
4 Replies
5. Shell Programming and Scripting
I am new to using make command and I keep getting this error time and again
please help me
Make file is as follows
#ARCH := $(shell uname)#
# ifeq ($(ARCH), SunOS)
DEFINES = -KPIC -DSVR4 -DSOLARIS -DSYSV -D__svr4 -D__svr4__\ -D_REENTRANT -DSOLARIS2_5 -D_SVID_GETTOD -DXP_UNIX -UDEBUG... (1 Reply)
Discussion started by: c.operatingsys
1 Replies
6. Programming
Hi All,
I am using GNU Make and i have a peculiar kind of error, i am not able to understand, Firstly have a look at the make file used by me
CFLAGS=-c -Wall
CC=gcc
.PHONY:clean
OBJ=./obj
SRC=./src
INC=./inc
exec: $(OBJ)/*.o
$(CC) $^ -o $@
%.o: $(SRC)/*.c
$(CC) $(CFLAGS)... (1 Reply)
Discussion started by: niranjanvg
1 Replies
7. Solaris
I attached a README file that I will refer to.
I successfully completed everything in the README file until step 4.
# pwd
/gani/gani-2.4.4
# ls
COPYING Makefile.macros gem.c
Makefile Makefile.sparc_gcc gem.h
Makefile.amd64_gcc ... (1 Reply)
Discussion started by: Bradj47
1 Replies
8. Programming
Hi ,
I get the following error when i run the make command.
cc -Aa -DUNIX -osrcmpmn srcmpmn.c
crt0: ERROR couldn't open /usr/lib/dld.sl errno:000000014
*** Error exit code 14
here the file is C program which has been modified.
Please help. (1 Reply)
Discussion started by: shashidhara_01
1 Replies
9. Shell Programming and Scripting
dear friends,
does anyone know how to make the percentage of proccess of a running script?
:confused:
like we always see in windows, when we install a program, there is always an indicator using percent value (from 0% to 100%)
i need this for my time consuming script
thanks before (1 Reply)
Discussion started by: jimmbp
1 Replies
10. UNIX for Advanced & Expert Users
Hi,
Not really sure whether this question should go to this forum but am giving it a shot.
I have compiled a simple C program test.c.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
static int a;
int test()
{
a=a+1;
return a;
}
When I run a make command, I get this:
... (2 Replies)
Discussion started by: nattynatty
2 Replies