gcc-uClibc.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  1. /*
  2. * Copyright (C) 2000 Manuel Novoa III
  3. *
  4. * This is a crude wrapper to use uClibc with gcc.
  5. * It was originally written to work around ./configure for ext2fs-utils.
  6. * It certainly can be improved, but it works for me in the normal cases.
  7. *
  8. * April 7, 2001
  9. *
  10. * A bug was fixed in building the gcc command line when dynamic linking.
  11. * The functions dlopen, etc. now work. At this time, you must make sure
  12. * the correct libdl.so is included however. It is safest to, for example,
  13. * add /lib/libdl.so.1 if using ld-linux.so.1 rather than adding -ldl to the
  14. * command line.
  15. *
  16. * Note: This is only a problem if devel and target archs are the same. To
  17. * avoid the problem, you can use a customized dynamic linker.
  18. *
  19. *
  20. * April 18, 2001
  21. *
  22. * The wrapper now works with either installed and uninstalled uClibc versions.
  23. * If you want to use the uninstalled header files and libs, either include
  24. * the string "build" in the invocation name such as
  25. * 'ln -s <ARCH>-uclibc-gcc <ARCH>-uclibc-gcc-build'
  26. * or include it in the environment variable setting of UCLIBC_GCC.
  27. * Note: This automatically enables the "rpath" behavior described below.
  28. *
  29. * The wrapper will now pass the location of the uClibc shared libs used to
  30. * the linker with the "-rpath" option if the invocation name includes the
  31. * string "rpath" or if the environment variable UCLIBC_GCC include it (as
  32. * with "build" above). This is primarily intended to be used on devel
  33. * platforms of the same arch as the target. A good place to use this feature
  34. * would be in the uClibc/test directory.
  35. *
  36. * The wrapper now displays the command line passed to gcc when '-v' is used.
  37. *
  38. * May 31, 2001
  39. *
  40. * "rpath" and "build" behavior are now decoupled. You can of course get
  41. * the old "build" behavior by setting UCLIBC_GCC="rpath-build". Order
  42. * isn't important here, as only the substrings are searched for.
  43. *
  44. * Added environment variable check for UCLIBC_GCC_DLOPT to let user specify
  45. * an alternative dynamic linker at runtime without using command line args.
  46. * Since this wouldn't commonly be used, I made it easy on myself. You have
  47. * to match the option you would have passed to the gcc wrapper. As an
  48. * example,
  49. *
  50. * export UCLIBC_GCC_DLOPT="-Wl,--dynamic-linker,/lib/ld-alt-linker.so.3"
  51. *
  52. * This is really only useful if target arch == devel arch and DEVEL_PREFIX
  53. * isn't empty. It involves a recompile, but you can at least test apps
  54. * on your devel system if combined with the "rpath" behavor if by using
  55. * LD_LIBRARY_PATH, etc.
  56. *
  57. * Also added check for "-Wl,--dynamic-linker" on the command line. The
  58. * use default dynamic linker or the envirnment-specified dynamic linker
  59. * is disabled in that case.
  60. *
  61. * Added options --uclibc-use-build-dir and --uclibc-use-rpath so that those
  62. * behaviors can be invoked from the command line.
  63. *
  64. */
  65. /*
  66. *
  67. * TODO:
  68. * Check/modify gcc-specific environment variables?
  69. */
  70. #include <stdio.h>
  71. #include <stdlib.h>
  72. #include <stdarg.h>
  73. #include <string.h>
  74. #include <unistd.h>
  75. #include "gcc-uClibc.h"
  76. static char *usr_lib_path = "-L"UCLIBC_DEVEL_PREFIX"/lib";
  77. static char static_linking[] = "-static";
  78. static char nostdinc[] = "-nostdinc";
  79. static char nostartfiles[] = "-nostartfiles";
  80. static char nodefaultlibs[] = "-nodefaultlibs";
  81. static char nostdlib[] = "-nostdlib";
  82. extern void *xmalloc(size_t size)
  83. {
  84. void *ptr = malloc(size);
  85. if (!ptr) {
  86. fprintf(stderr, "memory exhausted");
  87. exit(EXIT_FAILURE);
  88. }
  89. return ptr;
  90. }
  91. void xstrcat(char **string, ...)
  92. {
  93. const char *c;
  94. va_list p;
  95. #if 0
  96. int len = 0;
  97. /* Calculate how big exerything will be */
  98. va_start(p, string);
  99. while(1) {
  100. if (!(c = va_arg(p, const char *)))
  101. break;
  102. len+=strlen(c);
  103. }
  104. va_end(p);
  105. va_start(p, string);
  106. *string = xmalloc(len * sizeof(const char) + 2);
  107. #else
  108. /* This is faster. */
  109. /* Don't bother to calculate how big exerything
  110. * will be, just be careful to not overflow... */
  111. va_start(p, string);
  112. *string = xmalloc(BUFSIZ);
  113. #endif
  114. **string = '\0';
  115. while(1) {
  116. if (!(c = va_arg(p, const char *)))
  117. break;
  118. strcat(*string, c);
  119. }
  120. va_end(p);
  121. }
  122. int main(int argc, char **argv)
  123. {
  124. int use_build_dir = 0, linking = 1, use_static_linking = 0;
  125. int use_stdinc = 1, use_start = 1, use_stdlib = 1;
  126. int source_count = 0, use_rpath = 0, verbose = 0;
  127. int i, j, k, l, m;
  128. char ** gcc_argv;
  129. char ** gcc_argument;
  130. char ** libraries;
  131. char *dlstr;
  132. char *incstr;
  133. char *devprefix;
  134. char *builddir;
  135. char *libstr;
  136. char *build_dlstr;
  137. char *ep;
  138. char *rpath_link[2];
  139. char *rpath[2];
  140. char *uClibc_inc[2];
  141. char *crt0_path[2];
  142. char *lib_path[2];
  143. devprefix = getenv("UCLIBC_DEVEL_PREFIX");
  144. if (!devprefix) {
  145. devprefix = UCLIBC_DEVEL_PREFIX;
  146. }
  147. builddir = getenv("UCLIBC_BUILD_DIR");
  148. if (!builddir) {
  149. builddir = UCLIBC_BUILD_DIR;
  150. }
  151. incstr = getenv("UCLIBC_GCC_INC");
  152. libstr = getenv("UCLIBC_GCC_LIB");
  153. xstrcat(&(rpath_link[0]), "-Wl,-rpath-link,", devprefix, "/lib", NULL);
  154. xstrcat(&(rpath_link[1]), "-Wl,-rpath-link,", builddir, "/lib", NULL);
  155. xstrcat(&(rpath[0]), "-Wl,-rpath,", devprefix, "/lib", NULL);
  156. xstrcat(&(rpath[1]), "-Wl,-rpath,", builddir, "/lib", NULL);
  157. xstrcat(&(uClibc_inc[0]), devprefix, "/include/", NULL);
  158. xstrcat(&(uClibc_inc[1]), builddir, "/include/", NULL);
  159. xstrcat(&(crt0_path[0]), devprefix, "/lib/crt0.o", NULL);
  160. xstrcat(&(crt0_path[1]), builddir, "/lib/crt0.o", NULL);
  161. xstrcat(&(lib_path[0]), "-L", devprefix, "/lib", NULL);
  162. xstrcat(&(lib_path[1]), "-L", builddir, "/lib", NULL);
  163. build_dlstr = "-Wl,--dynamic-linker," BUILD_DYNAMIC_LINKER;
  164. dlstr = getenv("UCLIBC_GCC_DLOPT");
  165. if (!dlstr) {
  166. dlstr = "-Wl,--dynamic-linker," DYNAMIC_LINKER;
  167. }
  168. ep = getenv("UCLIBC_GCC");
  169. if (!ep) {
  170. ep = "";
  171. }
  172. if (strstr(ep,"build") != 0) {
  173. use_build_dir = 1;
  174. }
  175. if (strstr(ep,"rpath") != 0) {
  176. use_rpath = 1;
  177. }
  178. #if 1
  179. m = 0;
  180. libraries = __builtin_alloca(sizeof(char*) * (argc));
  181. #else
  182. if (!(libraries = malloc(sizeof(char) * (argc)))) {
  183. return EXIT_FAILURE;
  184. }
  185. #endif
  186. libraries[m] = '\0';
  187. for ( i = 1 ; i < argc ; i++ ) {
  188. if (argv[i][0] == '-') { /* option */
  189. switch (argv[i][1]) {
  190. case 'c': /* compile or assemble */
  191. case 'S': /* generate assembler code */
  192. case 'E': /* preprocess only */
  193. case 'r': /* partial-link */
  194. case 'i': /* partial-link */
  195. case 'M': /* generate dependencies */
  196. linking = 0;
  197. break;
  198. case 'l': /* library */
  199. libraries[m++] = argv[i];
  200. libraries[m] = '\0';
  201. break;
  202. case 'v': /* verbose */
  203. if (argv[i][2] == 0) verbose = 1;
  204. printf("Invoked as %s\n", argv[0]);
  205. break;
  206. case 'n':
  207. if (strcmp(nostdinc,argv[i]) == 0) {
  208. use_stdinc = 0;
  209. } else if (strcmp(nostartfiles,argv[i]) == 0) {
  210. use_start = 0;
  211. } else if (strcmp(nodefaultlibs,argv[i]) == 0) {
  212. use_stdlib = 0;
  213. } else if (strcmp(nostdlib,argv[i]) == 0) {
  214. use_start = 0;
  215. use_stdlib = 0;
  216. }
  217. break;
  218. case 's':
  219. if (strstr(argv[i],static_linking) != NULL) {
  220. use_static_linking = 1;
  221. }
  222. break;
  223. case 'W': /* -static could be passed directly to ld */
  224. if (strncmp("-Wl,",argv[i],4) == 0) {
  225. if (strstr(argv[i],static_linking) != 0) {
  226. use_static_linking = 1;
  227. }
  228. if (strstr(argv[i],"--dynamic-linker") != 0) {
  229. dlstr = 0;
  230. }
  231. }
  232. break;
  233. case '-':
  234. if (strstr(argv[i]+1,static_linking) != NULL) {
  235. use_static_linking = 1;
  236. }
  237. break;
  238. }
  239. } else { /* assume it is an existing source file */
  240. ++source_count;
  241. }
  242. }
  243. #if 1
  244. gcc_argv = __builtin_alloca(sizeof(char*) * (argc + 20));
  245. gcc_argument = __builtin_alloca(sizeof(char*) * (argc + 20));
  246. #else
  247. if (!(gcc_argv = malloc(sizeof(char) * (argc + 20)))) {
  248. return EXIT_FAILURE;
  249. }
  250. if (!(gcc_argument = malloc(sizeof(char) * (argc + 20)))) {
  251. return EXIT_FAILURE;
  252. }
  253. #endif
  254. i = 0; k = 0;
  255. gcc_argv[i++] = GCC_BIN;
  256. for ( j = 1 ; j < argc ; j++ ) {
  257. if (strcmp("--uclibc-use-build-dir",argv[j]) == 0) {
  258. use_build_dir = 1;
  259. } else if (strcmp("--uclibc-use-rpath",argv[j]) == 0) {
  260. use_rpath = 1;
  261. } else if (strncmp("-l",argv[j], 2) == 0) {
  262. continue;
  263. } else if (strstr(argv[j],static_linking) != NULL) {
  264. continue;
  265. #if 0
  266. } else if (strncmp("-v",argv[j], 2) == 0) {
  267. continue;
  268. #endif
  269. } else {
  270. gcc_argument[k++] = argv[j];
  271. gcc_argument[k] = '\0';
  272. }
  273. }
  274. if (linking && source_count) {
  275. if (use_stdlib) {
  276. gcc_argv[i++] = nostdlib;
  277. }
  278. if (use_static_linking) {
  279. gcc_argv[i++] = static_linking;
  280. }
  281. if (!use_static_linking) {
  282. if (dlstr && use_build_dir) {
  283. gcc_argv[i++] = build_dlstr;
  284. } else if (dlstr) {
  285. gcc_argv[i++] = dlstr;
  286. }
  287. if (use_rpath) {
  288. gcc_argv[i++] = rpath[use_build_dir];
  289. }
  290. }
  291. gcc_argv[i++] = rpath_link[use_build_dir]; /* just to be safe */
  292. if( libstr )
  293. gcc_argv[i++] = libstr;
  294. gcc_argv[i++] = lib_path[use_build_dir];
  295. if (!use_build_dir) {
  296. gcc_argv[i++] = usr_lib_path;
  297. }
  298. }
  299. if (use_stdinc && source_count) {
  300. gcc_argv[i++] = nostdinc;
  301. gcc_argv[i++] = "-isystem";
  302. gcc_argv[i++] = uClibc_inc[use_build_dir];
  303. gcc_argv[i++] = "-isystem";
  304. gcc_argv[i++] = GCC_INCDIR;
  305. if( incstr )
  306. gcc_argv[i++] = incstr;
  307. }
  308. if (linking && source_count) {
  309. if (use_start) {
  310. #ifdef ENABLE_CRTBEGIN_END
  311. if (use_static_linking) {
  312. gcc_argv[i++] = GCC_LIB_DIR "crtbegin.o" ;
  313. } else {
  314. gcc_argv[i++] = GCC_LIB_DIR "crtbeginS.o" ;
  315. }
  316. #endif
  317. gcc_argv[i++] = crt0_path[use_build_dir];
  318. }
  319. for ( l = 0 ; l < k ; l++ ) {
  320. if (gcc_argument[l]) gcc_argv[i++] = gcc_argument[l];
  321. }
  322. if (use_stdlib) {
  323. //gcc_argv[i++] = "-Wl,--start-group";
  324. gcc_argv[i++] = "-lgcc";
  325. for ( l = m ; l >= 0 ; l-- ) {
  326. if (libraries[l]) gcc_argv[i++] = libraries[l];
  327. }
  328. gcc_argv[i++] = "-lc";
  329. gcc_argv[i++] = "-lgcc";
  330. //gcc_argv[i++] = "-Wl,--end-group";
  331. }
  332. #ifdef ENABLE_CRTBEGIN_END
  333. if (use_start) {
  334. if (use_static_linking) {
  335. gcc_argv[i++] = GCC_LIB_DIR "crtend.o" ;
  336. } else {
  337. gcc_argv[i++] = GCC_LIB_DIR "crtendS.o" ;
  338. }
  339. }
  340. #endif
  341. } else {
  342. for ( l = 0 ; l < k ; l++ ) {
  343. if (gcc_argument[l]) gcc_argv[i++] = gcc_argument[l];
  344. }
  345. }
  346. gcc_argv[i++] = NULL;
  347. if (verbose) {
  348. for ( j = 0 ; gcc_argv[j] ; j++ ) {
  349. printf("arg[%2i] = %s\n", j, gcc_argv[j]);
  350. }
  351. fflush(stdout);
  352. }
  353. //no need to free memory from xstrcat because we never return...
  354. return execvp(GCC_BIN, gcc_argv);
  355. }