gcc-uClibc.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517
  1. /*
  2. * Copyright (C) 2000 Manuel Novoa III
  3. * Copyright (C) 2002 Erik Andersen
  4. *
  5. * This is a crude wrapper to use uClibc with gcc.
  6. * It was originally written to work around ./configure for ext2fs-utils.
  7. * It certainly can be improved, but it works for me in the normal cases.
  8. *
  9. * April 7, 2001
  10. *
  11. * A bug was fixed in building the gcc command line when dynamic linking.
  12. * The functions dlopen, etc. now work. At this time, you must make sure
  13. * the correct libdl.so is included however. It is safest to, for example,
  14. * add /lib/libdl.so.1 if using ld-linux.so.1 rather than adding -ldl to the
  15. * command line.
  16. *
  17. * Note: This is only a problem if devel and target archs are the same. To
  18. * avoid the problem, you can use a customized dynamic linker.
  19. *
  20. *
  21. * April 18, 2001
  22. *
  23. * The wrapper now works with either installed and uninstalled uClibc versions.
  24. * If you want to use the uninstalled header files and libs, either include
  25. * the string "build" in the invocation name such as
  26. * 'ln -s <ARCH>-uclibc-gcc <ARCH>-uclibc-gcc-build'
  27. * or include it in the environment variable setting of UCLIBC_GCC.
  28. * Note: This automatically enables the "rpath" behavior described below.
  29. *
  30. * The wrapper will now pass the location of the uClibc shared libs used to
  31. * the linker with the "-rpath" option if the invocation name includes the
  32. * string "rpath" or if the environment variable UCLIBC_GCC include it (as
  33. * with "build" above). This is primarily intended to be used on devel
  34. * platforms of the same arch as the target. A good place to use this feature
  35. * would be in the uClibc/test directory.
  36. *
  37. * The wrapper now displays the command line passed to gcc when '-v' is used.
  38. *
  39. * May 31, 2001
  40. *
  41. * "rpath" and "build" behavior are now decoupled. You can of course get
  42. * the old "build" behavior by setting UCLIBC_GCC="rpath-build". Order
  43. * isn't important here, as only the substrings are searched for.
  44. *
  45. * Added environment variable check for UCLIBC_GCC_DLOPT to let user specify
  46. * an alternative dynamic linker at runtime without using command line args.
  47. * Since this wouldn't commonly be used, I made it easy on myself. You have
  48. * to match the option you would have passed to the gcc wrapper. As an
  49. * example,
  50. *
  51. * export UCLIBC_GCC_DLOPT="-Wl,--dynamic-linker,/lib/ld-alt-linker.so.3"
  52. *
  53. * This is really only useful if target arch == devel arch and DEVEL_PREFIX
  54. * isn't empty. It involves a recompile, but you can at least test apps
  55. * on your devel system if combined with the "rpath" behavor if by using
  56. * LD_LIBRARY_PATH, etc.
  57. *
  58. * Also added check for "-Wl,--dynamic-linker" on the command line. The
  59. * use default dynamic linker or the envirnment-specified dynamic linker
  60. * is disabled in that case.
  61. *
  62. * Added options --uclibc-use-build-dir and --uclibc-use-rpath so that those
  63. * behaviors can be invoked from the command line.
  64. *
  65. */
  66. /*
  67. *
  68. * TODO:
  69. * Check/modify gcc-specific environment variables?
  70. */
  71. #include <stdio.h>
  72. #include <stdlib.h>
  73. #include <stdarg.h>
  74. #include <string.h>
  75. #include <unistd.h>
  76. #include <libgen.h>
  77. #include "gcc-uClibc.h"
  78. static char *our_usr_lib_path = "-L"UCLIBC_DEVEL_PREFIX"/lib";
  79. static char static_linking[] = "-static";
  80. static char nostdinc[] = "-nostdinc";
  81. static char nostartfiles[] = "-nostartfiles";
  82. static char nodefaultlibs[] = "-nodefaultlibs";
  83. static char nostdlib[] = "-nostdlib";
  84. #ifdef __UCLIBC_CTOR_DTOR__
  85. static char nostdinc_plus[] = "-nostdinc++";
  86. #endif
  87. extern void *xmalloc(size_t size)
  88. {
  89. void *ptr = malloc(size);
  90. if (!ptr) {
  91. fprintf(stderr, "memory exhausted");
  92. exit(EXIT_FAILURE);
  93. }
  94. return ptr;
  95. }
  96. void xstrcat(char **string, ...)
  97. {
  98. const char *c;
  99. va_list p;
  100. /* Don't bother to calculate how big exerything
  101. * will be, just be careful to not overflow... */
  102. va_start(p, string);
  103. *string = xmalloc(BUFSIZ);
  104. **string = '\0';
  105. while(1) {
  106. if (!(c = va_arg(p, const char *)))
  107. break;
  108. strcat(*string, c);
  109. }
  110. va_end(p);
  111. }
  112. int main(int argc, char **argv)
  113. {
  114. int use_build_dir = 0, linking = 1, use_static_linking = 0;
  115. int use_stdinc = 1, use_start = 1, use_stdlib = 1, use_pic = 0;
  116. int source_count = 0, use_rpath = 0, verbose = 0;
  117. int i, j, k, l, m, n;
  118. char ** gcc_argv;
  119. char ** gcc_argument;
  120. char ** libraries;
  121. char ** libpath;
  122. char *dlstr;
  123. char *incstr;
  124. char *devprefix;
  125. char *builddir;
  126. char *libstr;
  127. char *build_dlstr;
  128. char *ep;
  129. char *rpath_link[2];
  130. char *rpath[2];
  131. char *uClibc_inc[2];
  132. char *our_lib_path[2];
  133. char *crt0_path[2];
  134. const char *application_name;
  135. #ifdef __UCLIBC_CTOR_DTOR__
  136. char *crti_path[2];
  137. char *crtn_path[2];
  138. int len;
  139. int ctor_dtor = 1, cplusplus = 0, use_nostdinc_plus = 0;
  140. char *GPLUSPLUS_BIN = NULL;
  141. #endif
  142. #ifdef __UCLIBC_PROFILING__
  143. int profile = 0;
  144. char *gcrt1_path[2];
  145. #endif
  146. application_name = basename(argv[0]);
  147. if (application_name[0] == '-')
  148. application_name++;
  149. #ifdef __UCLIBC_CTOR_DTOR__
  150. /* We must use strstr since g++ might be named like a
  151. * cross compiler (i.e. arm-linux-g++). We must also
  152. * search carefully, in case we are searching something
  153. * like /opt/c++/gcc-3.1/bin/arm-linux-g++ or some similar
  154. * perversion... */
  155. len = strlen(application_name);
  156. if ((strcmp(application_name+len-3, "g++")==0) ||
  157. (strcmp(application_name+len-3, "c++")==0)) {
  158. char *gcc_bin = GCC_BIN;
  159. len = strlen(gcc_bin);
  160. if (strcmp(gcc_bin+len-3, "gcc")==0) {
  161. GPLUSPLUS_BIN = strdup(gcc_bin);
  162. GPLUSPLUS_BIN[len-1]='+';
  163. GPLUSPLUS_BIN[len-2]='+';
  164. }
  165. cplusplus = 1;
  166. use_nostdinc_plus = 1;
  167. }
  168. #endif
  169. devprefix = getenv("UCLIBC_DEVEL_PREFIX");
  170. if (!devprefix) {
  171. devprefix = UCLIBC_DEVEL_PREFIX;
  172. }
  173. builddir = getenv("UCLIBC_BUILD_DIR");
  174. if (!builddir) {
  175. builddir = UCLIBC_BUILD_DIR;
  176. }
  177. incstr = getenv("UCLIBC_GCC_INC");
  178. libstr = getenv("UCLIBC_GCC_LIB");
  179. xstrcat(&(rpath_link[0]), "-Wl,-rpath-link,", devprefix, "/lib", NULL);
  180. xstrcat(&(rpath_link[1]), "-Wl,-rpath-link,", builddir, "/lib", NULL);
  181. xstrcat(&(rpath[0]), "-Wl,-rpath,", devprefix, "/lib", NULL);
  182. xstrcat(&(rpath[1]), "-Wl,-rpath,", builddir, "/lib", NULL);
  183. xstrcat(&(uClibc_inc[0]), devprefix, "/include/", NULL);
  184. xstrcat(&(uClibc_inc[1]), builddir, "/include/", NULL);
  185. #ifdef __UCLIBC_CTOR_DTOR__
  186. xstrcat(&(crt0_path[0]), devprefix, "/lib/crt1.o", NULL);
  187. xstrcat(&(crt0_path[1]), builddir, "/lib/crt1.o", NULL);
  188. xstrcat(&(crti_path[0]), devprefix, "/lib/crti.o", NULL);
  189. xstrcat(&(crti_path[1]), builddir, "/lib/crti.o", NULL);
  190. xstrcat(&(crtn_path[0]), devprefix, "/lib/crtn.o", NULL);
  191. xstrcat(&(crtn_path[1]), builddir, "/lib/crtn.o", NULL);
  192. #else
  193. xstrcat(&(crt0_path[0]), devprefix, "/lib/crt0.o", NULL);
  194. xstrcat(&(crt0_path[1]), builddir, "/lib/crt0.o", NULL);
  195. #endif
  196. #ifdef __UCLIBC_PROFILING__
  197. xstrcat(&(gcrt1_path[0]), devprefix, "/lib/gcrt1.o", NULL);
  198. xstrcat(&(gcrt1_path[1]), builddir, "/lib/gcrt1.o", NULL);
  199. #endif
  200. xstrcat(&(our_lib_path[0]), "-L", devprefix, "/lib", NULL);
  201. xstrcat(&(our_lib_path[1]), "-L", builddir, "/lib", NULL);
  202. build_dlstr = "-Wl,--dynamic-linker," BUILD_DYNAMIC_LINKER;
  203. dlstr = getenv("UCLIBC_GCC_DLOPT");
  204. if (!dlstr) {
  205. dlstr = "-Wl,--dynamic-linker," DYNAMIC_LINKER;
  206. }
  207. ep = getenv("UCLIBC_GCC");
  208. if (!ep) {
  209. ep = "";
  210. }
  211. if (strstr(ep,"build") != 0) {
  212. use_build_dir = 1;
  213. }
  214. if (strstr(ep,"rpath") != 0) {
  215. use_rpath = 1;
  216. }
  217. m = 0;
  218. libraries = __builtin_alloca(sizeof(char*) * (argc));
  219. libraries[m] = '\0';
  220. n = 0;
  221. libpath = __builtin_alloca(sizeof(char*) * (argc));
  222. libpath[n] = '\0';
  223. for ( i = 1 ; i < argc ; i++ ) {
  224. if (argv[i][0] == '-') { /* option */
  225. switch (argv[i][1]) {
  226. case 'c': /* compile or assemble */
  227. case 'S': /* generate assembler code */
  228. case 'E': /* preprocess only */
  229. case 'M': /* generate dependencies */
  230. linking = 0;
  231. break;
  232. case 'L': /* library */
  233. libpath[n++] = argv[i];
  234. libpath[n] = '\0';
  235. if (argv[i][2] == 0) {
  236. argv[i] = '\0';
  237. libpath[n++] = argv[++i];
  238. libpath[n] = '\0';
  239. }
  240. argv[i] = '\0';
  241. break;
  242. case 'l': /* library */
  243. libraries[m++] = argv[i];
  244. libraries[m] = '\0';
  245. argv[i] = '\0';
  246. break;
  247. case 'v': /* verbose */
  248. if (argv[i][2] == 0) verbose = 1;
  249. printf("Invoked as %s\n", argv[0]);
  250. break;
  251. case 'n':
  252. if (strcmp(nostdinc,argv[i]) == 0) {
  253. use_stdinc = 0;
  254. } else if (strcmp(nostartfiles,argv[i]) == 0) {
  255. #ifdef __UCLIBC_CTOR_DTOR__
  256. ctor_dtor = 0;
  257. #endif
  258. use_start = 0;
  259. } else if (strcmp(nodefaultlibs,argv[i]) == 0) {
  260. use_stdlib = 0;
  261. argv[i] = '\0';
  262. } else if (strcmp(nostdlib,argv[i]) == 0) {
  263. #ifdef __UCLIBC_CTOR_DTOR__
  264. ctor_dtor = 0;
  265. #endif
  266. use_start = 0;
  267. use_stdlib = 0;
  268. }
  269. #ifdef __UCLIBC_CTOR_DTOR__
  270. else if (strcmp(nostdinc_plus,argv[i]) == 0) {
  271. if (cplusplus==1) {
  272. use_nostdinc_plus = 0;
  273. }
  274. }
  275. #endif
  276. break;
  277. case 's':
  278. if (strstr(argv[i],static_linking) != NULL) {
  279. use_static_linking = 1;
  280. }
  281. if (strcmp("-shared",argv[i]) == 0) {
  282. use_start = 0;
  283. use_pic = 1;
  284. }
  285. break;
  286. case 'W': /* -static could be passed directly to ld */
  287. if (strncmp("-Wl,",argv[i],4) == 0) {
  288. if (strstr(argv[i],static_linking) != 0) {
  289. use_static_linking = 1;
  290. }
  291. if (strstr(argv[i],"--dynamic-linker") != 0) {
  292. dlstr = 0;
  293. }
  294. }
  295. break;
  296. #ifdef __UCLIBC_PROFILING__
  297. case 'p':
  298. if (strcmp("-pg",argv[i]) == 0) {
  299. profile = 1;
  300. }
  301. break;
  302. #endif
  303. case 'f':
  304. /* Check if we are doing PIC */
  305. if (strcmp("-fPIC",argv[i]) == 0) {
  306. use_pic = 1;
  307. } else if (strcmp("-fpic",argv[i]) == 0) {
  308. use_pic = 1;
  309. }
  310. #ifdef __UCLIBC_PROFILING__
  311. else if (strcmp("-fprofile-arcs",argv[i]) == 0) {
  312. profile = 1;
  313. }
  314. #endif
  315. break;
  316. case '-':
  317. if (strstr(argv[i]+1,static_linking) != NULL) {
  318. use_static_linking = 1;
  319. argv[i]='\0';
  320. } else if (strcmp("--uclibc-use-build-dir",argv[i]) == 0) {
  321. use_build_dir = 1;
  322. argv[i]='\0';
  323. } else if (strcmp("--uclibc-use-rpath",argv[i]) == 0) {
  324. use_rpath = 1;
  325. argv[i]='\0';
  326. }
  327. #ifdef __UCLIBC_CTOR_DTOR__
  328. else if (strcmp("--uclibc-no-ctors",argv[i]) == 0) {
  329. ctor_dtor = 0;
  330. argv[i]='\0';
  331. }
  332. #endif
  333. break;
  334. }
  335. } else { /* assume it is an existing source file */
  336. ++source_count;
  337. }
  338. }
  339. gcc_argv = __builtin_alloca(sizeof(char*) * (argc + 64));
  340. gcc_argument = __builtin_alloca(sizeof(char*) * (argc + 20));
  341. i = 0; k = 0;
  342. #ifdef __UCLIBC_CTOR_DTOR__
  343. if (cplusplus && GPLUSPLUS_BIN)
  344. gcc_argv[i++] = GPLUSPLUS_BIN;
  345. else
  346. #endif
  347. gcc_argv[i++] = GCC_BIN;
  348. for ( j = 1 ; j < argc ; j++ ) {
  349. if (argv[j]=='\0') {
  350. continue;
  351. } else {
  352. gcc_argument[k++] = argv[j];
  353. gcc_argument[k] = '\0';
  354. }
  355. }
  356. if (linking && source_count) {
  357. #if defined __HAVE_ELF__ && ! defined __UCLIBC_HAS_MMU__
  358. gcc_argv[i++] = "-Wl,-elf2flt";
  359. #endif
  360. gcc_argv[i++] = nostdlib;
  361. if (use_static_linking) {
  362. gcc_argv[i++] = static_linking;
  363. }
  364. if (!use_static_linking) {
  365. if (dlstr && use_build_dir) {
  366. gcc_argv[i++] = build_dlstr;
  367. } else if (dlstr) {
  368. gcc_argv[i++] = dlstr;
  369. }
  370. if (use_rpath) {
  371. gcc_argv[i++] = rpath[use_build_dir];
  372. }
  373. }
  374. for ( l = 0 ; l < n ; l++ ) {
  375. if (libpath[l]) gcc_argv[i++] = libpath[l];
  376. }
  377. gcc_argv[i++] = rpath_link[use_build_dir]; /* just to be safe */
  378. if( libstr )
  379. gcc_argv[i++] = libstr;
  380. gcc_argv[i++] = our_lib_path[use_build_dir];
  381. if (!use_build_dir) {
  382. gcc_argv[i++] = our_usr_lib_path;
  383. }
  384. }
  385. if (use_stdinc && source_count) {
  386. gcc_argv[i++] = nostdinc;
  387. #ifdef __UCLIBC_CTOR_DTOR__
  388. if (cplusplus) {
  389. char *cppinc;
  390. if (use_nostdinc_plus) {
  391. gcc_argv[i++] = nostdinc_plus;
  392. }
  393. xstrcat(&cppinc, uClibc_inc[use_build_dir], "g++/", NULL);
  394. gcc_argv[i++] = "-isystem";
  395. gcc_argv[i++] = cppinc;
  396. xstrcat(&cppinc, uClibc_inc[use_build_dir], "g++-v3/", NULL);
  397. gcc_argv[i++] = "-isystem";
  398. gcc_argv[i++] = cppinc;
  399. }
  400. #endif
  401. gcc_argv[i++] = "-isystem";
  402. gcc_argv[i++] = uClibc_inc[use_build_dir];
  403. gcc_argv[i++] = "-iwithprefix";
  404. gcc_argv[i++] = "include";
  405. if( incstr )
  406. gcc_argv[i++] = incstr;
  407. }
  408. if (linking && source_count) {
  409. #ifdef __UCLIBC_PROFILING__
  410. if (profile) {
  411. gcc_argv[i++] = gcrt1_path[use_build_dir];
  412. }
  413. #endif
  414. #ifdef __UCLIBC_CTOR_DTOR__
  415. if (ctor_dtor) {
  416. gcc_argv[i++] = crti_path[use_build_dir];
  417. if (use_pic) {
  418. gcc_argv[i++] = LIBGCC_DIR "crtbeginS.o" ;
  419. } else {
  420. gcc_argv[i++] = LIBGCC_DIR "crtbegin.o" ;
  421. }
  422. }
  423. #endif
  424. if (use_start) {
  425. #ifdef __UCLIBC_PROFILING__
  426. if (!profile)
  427. #endif
  428. {
  429. gcc_argv[i++] = crt0_path[use_build_dir];
  430. }
  431. }
  432. for ( l = 0 ; l < k ; l++ ) {
  433. if (gcc_argument[l]) gcc_argv[i++] = gcc_argument[l];
  434. }
  435. if (use_stdlib) {
  436. //gcc_argv[i++] = "-Wl,--start-group";
  437. gcc_argv[i++] = "-lgcc";
  438. }
  439. for ( l = 0 ; l < m ; l++ ) {
  440. if (libraries[l]) gcc_argv[i++] = libraries[l];
  441. }
  442. if (use_stdlib) {
  443. #ifdef __UCLIBC_CTOR_DTOR__
  444. if (cplusplus) {
  445. gcc_argv[ i++ ] = "-lstdc++";
  446. gcc_argv[ i++ ] = "-lm";
  447. }
  448. #endif
  449. gcc_argv[i++] = "-lc";
  450. gcc_argv[i++] = "-lgcc";
  451. //gcc_argv[i++] = "-Wl,--end-group";
  452. }
  453. #ifdef __UCLIBC_CTOR_DTOR__
  454. if (ctor_dtor) {
  455. if (use_pic) {
  456. gcc_argv[i++] = LIBGCC_DIR "crtendS.o" ;
  457. } else {
  458. gcc_argv[i++] = LIBGCC_DIR "crtend.o" ;
  459. }
  460. gcc_argv[i++] = crtn_path[use_build_dir];
  461. }
  462. #endif
  463. } else {
  464. for ( l = 0 ; l < k ; l++ ) {
  465. if (gcc_argument[l]) gcc_argv[i++] = gcc_argument[l];
  466. }
  467. }
  468. gcc_argv[i++] = NULL;
  469. if (verbose) {
  470. for ( j = 0 ; gcc_argv[j] ; j++ ) {
  471. printf("arg[%2i] = %s\n", j, gcc_argv[j]);
  472. }
  473. fflush(stdout);
  474. }
  475. //no need to free memory from xstrcat because we never return...
  476. #ifdef __UCLIBC_CTOR_DTOR__
  477. if (cplusplus && GPLUSPLUS_BIN)
  478. return execvp(GPLUSPLUS_BIN, gcc_argv);
  479. else
  480. #endif
  481. return execvp(GCC_BIN, gcc_argv);
  482. }