Sponsored Content
Full Discussion: ld failure
Top Forums Programming ld failure Post 56228 by handak9 on Wednesday 29th of September 2004 10:14:06 AM
Old 09-29-2004
ld failure

Hi,

I am using gmake to compile a c program with a makefile. The make file runs ld. I get the following error

jsh1035c:/users/egate453/admegate/kapil/samples $ gmake -e -f GNUmakefile queue_c
gmake -f ./GNUmakefile queue_c in_objdir=1 build_root=/users/egate453/admegate/kapil/samples
gmake[1]: Entering directory `/export/home/users/egate453/admegate/kapil/samples'
g++ -g -Wall -L. -o queue_c queue_c.o -lsocket -lnsl -lintl -lposix4 -lpthread -ldl stc_mscapi.dll stc_mscommon.dll stc_msapi.dll stc_msclient.dll
ld: fatal: file stc_mscapi.dll: unknown file type
ld: fatal: File processing errors. No output written to queue_c
collect2: ld returned 1 exit status
gmake[1]: *** [queue_c] Error 1
gmake[1]: Leaving directory `/export/home/users/egate453/admegate/kapil/samples'
gmake: *** [queue_c] Error 2

Do dll files work with ld and unix?

I got all this from a 3rd party vendor so I am having to do a bit of hacking to sort this out.

Any help is appreciated.
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Bind failure

Hi all, I am using Perl program to do socket communication. My application has to use port 40001 this is a condition I can't change the port. The execution of this script always gave an error 'Bind failure port already in use' netstat execution gives below line: udp 0 0 ... (5 Replies)
Discussion started by: zing_foru
5 Replies

2. UNIX for Advanced & Expert Users

subsystem failure

aix 4.3 I get the following error from the errpt log BD797922 0306170008 P H enclosure0 SUBSYSTEM FAILURE I'm not clear on this kind of error. It never happened to me. What do this errors mean, and how do I clear or solve them? Any help is appreciated. (2 Replies)
Discussion started by: andwhat
2 Replies

3. Linux

Boot failure

Hi all I used a dual boot operating system and it works fine for me. Now , i install a Ati radeon 9250 Agp card on my system and this results in boot failure of fedora 6. The graphics card is working fine with windows XP , i.e i have no compatibility issues.The system also refuses to boot when i... (2 Replies)
Discussion started by: joshighanshyam
2 Replies

4. UNIX for Advanced & Expert Users

su failure

Usually when su rejects an attempt to switch user it responds with "Sorry" but with a certain username on some unix servers the response is "Killed". I'm guessing the su accepted the username/password but refused to spawn child shell with the specified username. What's causing this and what has to... (8 Replies)
Discussion started by: twk
8 Replies

5. UNIX for Advanced & Expert Users

kernel failure

hi, i´ve been the last 48 hours with this issue, this is my last resort.... after clone another system to a new one with lvm, the last step is mkinitrd. i execute it and it finish, but some errors are sent to stderrr. /sbin/mkinitrd: line380: gawk: command not found Traceback (most... (2 Replies)
Discussion started by: pabloli150
2 Replies

6. Shell Programming and Scripting

SFTP Failure

Hi , I need to write a IF condition to know if a SFTP file transfer is successful or not and send email if its failed. `sftp username@servername <<comm1 cd /directory put filename comm1 bye` I use above commands for my connections. So please help me to write a IF statement. ... (0 Replies)
Discussion started by: krishna87
0 Replies

7. Programming

pthread_cancel failure

I'm running a simple web server and seem to be having a problem canceling sessions. When a new request is received I start a thread to handle that session's requests. Since I want to keep the pipe open for a long time - 10 minutes or maybe 2 hours - I also have a session manager that... (4 Replies)
Discussion started by: John S.
4 Replies

8. UNIX for Advanced & Expert Users

mount failure

i am tryin to mount my shared folder on the server, I used a command suggested to me, but it also fails, any suggestions would be thankful saman@saman-G41MT-ES2L:~$ sudo mount -t cifs //safe/tabatabaian_s -o username="myuser",password="mypass" /mnt/share mount: wrong fs type, bad option, bad... (1 Reply)
Discussion started by: dr_mabuse
1 Replies

9. Red Hat

NT_STATUS_LOGON FAILURE

I am configuring Samba on one of my vmware.when i put smbclient -L local its showing error message : NT_STATUS_LOGON failure.I found that when i remove "Encrypted password entry from smb.conf" it works. pls help me ---------- Post updated at 08:39 PM ---------- Previous update was at 07:11 PM... (0 Replies)
Discussion started by: Vaibhav.T
0 Replies

10. UNIX for Dummies Questions & Answers

boot up failure unix sco after power failure

hi power went out. next day unix sco wont boot up error code 303. any help appreciated as we are clueless. (11 Replies)
Discussion started by: fredthayer
11 Replies
Module::Starter::BuilderSet(3pm)			User Contributed Perl Documentation			  Module::Starter::BuilderSet(3pm)

NAME
Module::Starter::BuilderSet - determine builder metadata VERSION
Version 1.58 SYNOPSIS
use Module::Starter::BuilderSet; my $builder_set = Module::Starter::BuilderSet->new; my @supported_builders = $builder_set->supported_builders(); my $default_builder = $builder_set->default_builder(); my $output_file = $builder_set->file_for_builder($default_builder); my $create_method = $builder_set->method_for_builder($default_builder); Module::Starter::Simple->$create_method($default_builder); # eeew. my @build_commands = $builder_set->instructions_for_builder($default_builder); my @builder_dependencies = $builder_set->deps_for_builder($default_builder); my @compatible_builders = $builder_set->check_compatibility(@builder_list); my $ms_simple = Module::Starter::Simple->new(); my $build_method = $builder_set->manifest_method($builder); $ms_simple->$build_method(); DESCRIPTION
Module::Starter::BuilderSet is a collection of utility methods used to provide metadata about builders supported by Module::Starter. CLASS METHODS
"new()" This method initializes and returns an object representing the set of Builders supported by Module::Starter "supported_builders()" This method returns a list of builders supported by Module::Starter "file_for_builder($builder)" This method returns the name of the file generated by Module::Starter that will be used to build the generated module "method_for_builder($builder)" This method returns the name of the method in the "Module::Starter::Simple" package that is called to create the file returned by "file_for_builder($builder)" "instructions_for_builder($builder)" This method returns a list of commands that, when run from the command line (or with "system()"), will cause the generated module to be built, tested and installed. "deps_for_builder($builder)" This method returns a list of dependencies in the following format: "( { command => "make", aliases => [ 'make', 'gmake' ], }, { command => "another_command", aliases => [ 'alias0', 'alias1', '...' ], }, )" "manifest_method($builder)" This method returns the command to run to create the manifest according to the builder asked. "check_compatibility(@builders)" This method accepts a list of builders and filters out the ones that are unsupported or mutually exclusive, returning the builders that passed the filter. If none pass the filter, the default builder is returned. "default_builder()" This method returns the module name of the default builder. BUGS
Please report any bugs or feature requests to "bug-module-starter at rt.cpan.org", or through the web interface at <http://rt.cpan.org>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. AUTHOR
C.J. Adams-Collier, "<cjac@colliertech.org>" Copyright &; License Copyright 2007 C.J. Adams-Collier, All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. Please note that these modules are not products of or supported by the employers of the various contributors to the code. perl v5.12.4 2011-07-02 Module::Starter::BuilderSet(3pm)
All times are GMT -4. The time now is 09:59 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy