⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gcc-uclibc.c

📁 Axis 221 camera embedded programing interface
💻 C
📖 第 1 页 / 共 2 页
字号:
/* vi: set sw=4 ts=4: *//* * Copyright (C) 2000 Manuel Novoa III * Copyright (C) 2002-2003 Erik Andersen * * This is a crude wrapper to use uClibc with gcc. * It was originally written to work around ./configure for ext2fs-utils. * It certainly can be improved, but it works for me in the normal cases. * * April 7, 2001 * * A bug was fixed in building the gcc command line when dynamic linking. * The functions dlopen, etc. now work.  At this time, you must make sure * the correct libdl.so is included however.  It is safest to, for example, * add /lib/libdl.so.1 if using ld-linux.so.1 rather than adding -ldl to the * command line. * * Note: This is only a problem if devel and target archs are the same.  To * avoid the problem, you can use a customized dynamic linker. * * * April 18, 2001 * * The wrapper now works with either installed and uninstalled uClibc versions. * If you want to use the uninstalled header files and libs, either include * the string "build" in the invocation name such as *       'ln -s <ARCH>-uclibc-gcc <ARCH>-uclibc-gcc-build' * or include it in the environment variable setting of UCLIBC_ENV. * Note: This automatically enables the "rpath" behavior described below. * * The wrapper will now pass the location of the uClibc shared libs used to * the linker with the "-rpath" option if the invocation name includes the * string "rpath" or if the environment variable UCLIBC_ENV include it (as * with "build" above).  This is primarily intended to be used on devel * platforms of the same arch as the target.  A good place to use this feature * would be in the uClibc/test directory. * * The wrapper now displays the command line passed to gcc when '-v' is used. * * May 31, 2001 * * "rpath" and "build" behavior are now decoupled.  You can of course get * the old "build" behavior by setting UCLIBC_ENV="rpath-build".  Order * isn't important here, as only the substrings are searched for. * * Added environment variable check for UCLIBC_GCC_DLOPT to let user specify * an alternative dynamic linker at runtime without using command line args. * Since this wouldn't commonly be used, I made it easy on myself.  You have * to match the option you would have passed to the gcc wrapper.  As an * example, * *   export UCLIBC_GCC_DLOPT="-Wl,--dynamic-linker,/lib/ld-alt-linker.so.3" * * This is really only useful if target arch == devel arch and DEVEL_PREFIX * isn't empty.  It involves a recompile, but you can at least test apps * on your devel system if combined with the "rpath" behavor if by using * LD_LIBRARY_PATH, etc. * * Also added check for "-Wl,--dynamic-linker" on the command line.  The * use default dynamic linker or the envirnment-specified dynamic linker * is disabled in that case. * * Added options --uclibc-use-build-dir and --uclibc-use-rpath so that those * behaviors can be invoked from the command line. * *//* * * TODO: * Check/modify gcc-specific environment variables? */#include <stdio.h>#include <stdlib.h>#include <stdarg.h>#include <string.h>#include <unistd.h>#include <errno.h>#include <sys/stat.h>#include <sys/wait.h>#include "gcc-uClibc.h"static char *our_usr_lib_path = "-L"UCLIBC_DEVEL_PREFIX"/lib";static char static_linking[] = "-static";static char nostdinc[] = "-nostdinc";static char nostartfiles[] = "-nostartfiles";static char nodefaultlibs[] = "-nodefaultlibs";static char nostdlib[] = "-nostdlib";#ifdef __UCLIBC_CTOR_DTOR__static char nostdinc_plus[] = "-nostdinc++";#endif/* Include a local implementation of basename, since this * uses the host system's C lib, and CYGWIN apparently * doesn't provide an implementation of basename(). */char *basename(const char *path){	register const char *s;	register const char *p;	p = s = path;	while (*s) {		if (*s++ == '/') {			p = s;		}	}	return (char *) p;}char *dirname(char *path){	static const char null_or_empty_or_noslash[] = ".";	register char *s;	register char *last;	char *first;	last = s = path;	if (s != NULL) {LOOP:		while (*s && (*s != '/')) ++s;		first = s;		while (*s == '/') ++s;		if (*s) {			last = first;			goto LOOP;		}		if (last == path) {			if (*last != '/') {				goto DOT;			}			if ((*++last == '/') && (last[1] == '\0')) {				++last;			}		}		*last = '\0';		return path;	}DOT:	return (char *) null_or_empty_or_noslash;}extern void *xmalloc(size_t size){	void *ptr = malloc(size);	if (!ptr) {		fprintf(stderr, "memory exhausted");		exit(EXIT_FAILURE);	}	return ptr;}void xstrcat(char **string, ...){	const char *c;	va_list p; 	/* Don't bother to calculate how big exerything 	 * will be, just be careful to not overflow...  */	va_start(p, string);	*string = xmalloc(BUFSIZ);	**string = '\0';	while ((c = va_arg(p, const char *))) {		strcat(*string, c); 	}	va_end(p);}int main(int argc, char **argv){	int use_build_dir = 0, linking = 1, use_static_linking = 0;	int use_stdinc = 1, use_start = 1, use_stdlib = 1, use_pic = 0;	int source_count = 0, use_rpath = 0, verbose = 0;	int minusx = 0;	int i, j, k, l, m, n;	char ** gcc_argv;	char ** gcc_argument;	char ** libraries;	char ** libpath;	char *dlstr;	char *incstr;	char *devprefix;	char *builddir;	char *libstr;	char *build_dlstr = NULL;	char *cc;	char *ep;	char *rpath_link[2];	char *rpath[2];	char *uClibc_inc[2];	char *our_lib_path[2];	char *crt0_path[2];	char *crtbegin_path[2];	char *crtend_path[2];	const char *application_name;#ifdef __UCLIBC_CTOR_DTOR__	char *crti_path[2];	char *crtn_path[2];	int len;	int ctor_dtor = 1, cplusplus = 0, use_nostdinc_plus = 0;	int findlibgcc = 1;	char *cpp = NULL;#endif#ifdef __UCLIBC_PROFILING__	int profile = 0;	char *gcrt1_path[2];#endif	cc = getenv("UCLIBC_CC");	if (cc == NULL) {		cc = GCC_BIN;#ifdef __UCLIBC_CTOR_DTOR__		findlibgcc = 0;#endif	}	application_name = basename(argv[0]);	if (application_name[0] == '-')		application_name++;#ifdef __UCLIBC_CTOR_DTOR__	/* We must use strstr since g++ might be named like a	 * cross compiler (i.e. arm-linux-g++).   We must also	 * search carefully, in case we are searching something 	 * like /opt/c++/gcc-3.1/bin/arm-linux-g++ or some similar 	 * perversion...  */	len = strlen(application_name);	if ((strcmp(application_name+len-3, "g++") == 0) ||	    (strcmp(application_name+len-3, "c++") == 0)) {		len = strlen(cc);		if (strcmp(cc+len-3, "gcc") == 0) {			cpp = strdup(cc);			cpp[len-1] = '+';			cpp[len-2] = '+';		}		cplusplus = 1;		use_nostdinc_plus = 1;	}#endif	devprefix = getenv("UCLIBC_DEVEL_PREFIX");	if (!devprefix) {		devprefix = UCLIBC_DEVEL_PREFIX;	}	builddir = getenv("UCLIBC_BUILD_DIR");	if (!builddir) {		builddir = UCLIBC_BUILD_DIR;	}	incstr = getenv("UCLIBC_GCC_INC");	libstr = getenv("UCLIBC_GCC_LIB");	ep     = getenv("UCLIBC_ENV");	if (!ep) {		ep = "";	}	if (strstr(ep,"build") != NULL) {		use_build_dir = 1;	}	if (strstr(ep,"rpath") != NULL) {		use_rpath = 1;	}	xstrcat(&(rpath_link[0]), "-Wl,-rpath-link,", devprefix, "/lib", NULL);	xstrcat(&(rpath_link[1]), "-Wl,-rpath-link,", builddir, "/lib", NULL);	xstrcat(&(rpath[0]), "-Wl,-rpath,", devprefix, "/lib", NULL);	xstrcat(&(rpath[1]), "-Wl,-rpath,", builddir, "/lib", NULL);	xstrcat(&(uClibc_inc[0]), devprefix, "/include/", NULL);	xstrcat(&(uClibc_inc[1]), builddir, "/include/", NULL);#ifdef __UCLIBC_CTOR_DTOR__	xstrcat(&(crt0_path[0]), devprefix, "/lib/crt1.o", NULL);	xstrcat(&(crt0_path[1]), builddir, "/lib/crt1.o", NULL);	xstrcat(&(crti_path[0]), devprefix, "/lib/crti.o", NULL);	xstrcat(&(crti_path[1]), builddir, "/lib/crti.o", NULL);	xstrcat(&(crtn_path[0]), devprefix, "/lib/crtn.o", NULL);	xstrcat(&(crtn_path[1]), builddir, "/lib/crtn.o", NULL);#else	xstrcat(&(crt0_path[0]), devprefix, "/lib/crt0.o", NULL);	xstrcat(&(crt0_path[1]), builddir, "/lib/crt0.o", NULL);#endif#ifdef __UCLIBC_PROFILING__	xstrcat(&(gcrt1_path[0]), devprefix, "/lib/gcrt1.o", NULL);	xstrcat(&(gcrt1_path[1]), builddir, "/lib/gcrt1.o", NULL);#endif	xstrcat(&(our_lib_path[0]), "-L", devprefix, "/lib", NULL);	xstrcat(&(our_lib_path[1]), "-L", builddir, "/lib", NULL);#ifdef __UCLIBC_HAS_SHARED__	build_dlstr = "-Wl,--dynamic-linker," BUILD_DYNAMIC_LINKER;	dlstr = getenv("UCLIBC_GCC_DLOPT");	if (!dlstr) {		dlstr = "-Wl,--dynamic-linker," DYNAMIC_LINKER;	}#endif	m = 0;	libraries = __builtin_alloca(sizeof(char*) * (argc));	libraries[m] = NULL;	n = 0;	libpath = __builtin_alloca(sizeof(char*) * (argc));	libpath[n] = NULL;	for ( i = 1 ; i < argc ; i++ ) {		if (argv[i][0] == '-' && argv[i][1] != '\0') { /* option */			switch (argv[i][1]) {				case 'c':		/* compile or assemble */				case 'S':		/* generate assembler code */				case 'E':		/* preprocess only */				case 'M':	    /* generate dependencies */					linking = 0;					break;				case 'L': 		/* library */					libpath[n++] = argv[i];					libpath[n] = NULL;					if (argv[i][2] == '\0') {						argv[i] = NULL;						libpath[n++] = argv[++i];						libpath[n] = NULL;					}					argv[i] = NULL;					break;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -