• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/

Lines Matching defs:javac

72    javac    JDK 1.1.8   Y  -classpath P   -O -g  javac 2>/dev/null; test $? = 1
73 javac JDK 1.3.0 Y -classpath P -O -g javac 2>/dev/null; test $? -le 2
86 3. "javac", because it is a standard compiler,
92 this variable can confuse the JDK's javac.
201 compile_using_envjavac (const char *javac,
220 command_length = strlen (javac);
235 memcpy (p, javac, strlen (javac));
236 p += strlen (javac);
270 exitstatus = execute (javac, "/bin/sh", argv, false, false, false,
365 /* Try to compile a set of Java sources with javac.
389 *argp++ = "javac";
423 exitstatus = execute ("javac", "javac", argv, false, false, false,
544 is_envjavac_gcj (const char *javac)
566 command_length = strlen (javac) + 1 + 9 + 1;
571 memcpy (p, javac, strlen (javac));
572 p += strlen (javac);
584 child = create_pipe_in (javac, "/bin/sh", argv, DEV_NULL, true, true,
608 exitstatus = wait_subprocess (child, javac, true, true, true, false);
624 is_envjavac_gcj43 (const char *javac)
647 command_length = strlen (javac) + 1 + 9 + 1;
652 memcpy (p, javac, strlen (javac));
653 p += strlen (javac);
665 child = create_pipe_in (javac, "/bin/sh", argv, DEV_NULL, true, true,
692 exitstatus = wait_subprocess (child, javac, true, true, true, false);
709 is_envjavac_gcj43_usable (const char *javac,
756 if (!compile_using_envjavac (javac,
766 xasprintf ("%s -fsource=%s", javac, source_version);
804 if (!compile_using_envjavac (javac,
834 javac, source_version, target_version);
872 is_envjavac_oldgcj_14_14_usable (const char *javac, bool *usablep)
905 if (!compile_using_envjavac (javac, java_sources, 1, tmpdir->dir_name,
927 is_envjavac_oldgcj_14_13_usable (const char *javac,
966 if (!compile_using_envjavac (javac,
977 javac_noassert = xasprintf ("%s -fno-assert", javac);
1012 if (!compile_using_envjavac (javac,
1059 is_envjavac_nongcj_usable (const char *javac,
1106 if (!compile_using_envjavac (javac,
1116 xasprintf ("%s -source %s", javac, source_version);
1154 if (!compile_using_envjavac (javac,
1181 /* Try with -target option alone. (Sun javac 1.3.1 has the -target
1184 xasprintf ("%s -target %s", javac, target_version);
1271 -target and -source options. (Supported by Sun javac 1.4 and
1787 /* Test for presence of javac: "javac 2> /dev/null ; test $? -le 2" */
1791 argv[0] = "javac";
1793 exitstatus = execute ("javac", "javac", argv, false, false, true, true,
1802 /* Test whether javac can be used and whether it needs a -source and/or
1824 /* Try javac. */
1858 /* javac compiled conftest.java successfully. */
1911 /* javac compiled conftestfail.java successfully, and
1912 "javac -source $source_version" rejects it. So the
1923 /* Try with -target option alone. (Sun javac 1.3.1 has the -target
1937 /* "javac -target $target_version" compiled conftest.java
1993 /* "javac -target $target_version" compiled
1995 "javac -target $target_version -source $source_version"
2008 -target and -source options. (Supported by Sun javac 1.4 and
2022 /* "javac -target $target_version -source $source_version"
2084 const char *javac = getenv ("JAVAC");
2085 if (javac != NULL && javac[0] != '\0')
2097 if (is_envjavac_gcj (javac))
2100 if (is_envjavac_gcj43 (javac))
2104 if (is_envjavac_gcj43_usable (javac,
2120 if (is_envjavac_oldgcj_14_14_usable (javac, &usable))
2129 if (is_envjavac_oldgcj_14_13_usable (javac,
2142 if (is_envjavac_nongcj_usable (javac,
2163 ? xasprintf ("%s -fno-assert", javac)
2165 javac,