Displaying 6 results from an estimated 6 matches for "save_temp".
Did you mean:
save_temps
2013 Jun 06
1
[supermin PATCH] RFC: Add a --names-only flag.
...* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*)
open Printf
+type mode =
+ |PkgFiles
+ |PkgNames
+ |PkgNamesOnly
+
let excludes = ref []
-let names_mode = ref false
+let mode = ref PkgFiles
let outputdir = ref "."
let packages = ref []
let save_temps = ref false
let use_installed = ref false
let verbose = ref false
@@ -50,12 +55,14 @@ let set_packager_config filename =
packager_config := Some filename
let argspec = Arg.align [
"--exclude", Arg.String add_exclude,
"regexp Exclude packages matching regexp";
-...
2005 Mar 02
2
[PATCH] klcc compatibility with gcc
...o pass options to the linker
push(@ldopt, split(/,/, $1));
- } elsif ( $a =~ /^-([fmwWQdO]|std=|ansi|pedantic)/ ) {
+ } elsif ( $a =~ /^-([fmwWQdODUI]|std=|ansi|pedantic)/ ) {
# Options to gcc
push(@ccopt, $a);
} elsif ( $a =~ /^-[gp]/ ) {
@@ -124,6 +125,7 @@
push(@ccopt, $a);
$save_temps = 1;
} elsif ( $a =~ '^-([cSE])$' ) {
+ push(@ccopt, $a);
$operation = $1;
} elsif ( $a eq '-shared' ) {
$shared = 1;
2020 Aug 20
0
[klibc:master] klcc: Treat CC, LD, STRIP as multiple words
...ang(\@files, \%flang));
+ $rv = mysystem(@CC, @ccopt, @outopt, files_with_lang(\@files, \%flang));
} else {
if ( scalar(@files) == 0 ) {
die "$0: No input files!\n";
@@ -241,7 +241,7 @@ if ( $operation ne '' ) {
push(@objs, $fo);
push(@rmobjs, $fo) unless ( $save_temps );
- $rv = mysystem($CC, @ccopt, '-c', '-o', $fo, '-x', $flang{$f}, $f);
+ $rv = mysystem(@CC, @ccopt, '-c', '-o', $fo, '-x', $flang{$f}, $f);
if ( $rv ) {
unlink(@rmobjs);
@@ -251,18 +251,18 @@ if ( $operation ne '' ) {...
2018 Jun 18
5
Bug-closing protocol
Hi all,
First of all, I'm sorry to create a separate thread on the mailing list, I
have disabled all mails from it.
I just read the thread about the bug closing protocol thanks to LLVMWeekly.
(http://lists.llvm.org/pipermail/llvm-dev/2018-June/123955.html)
I've noticed a lot of reactions from people involved with the solving part
of the bugs. So I'm putting out the loggers point of
2010 Mar 14
0
[patches] klibc review unsorted patch queue
...Archlinux.
it is easily overidable by cli, but shared binaries seem better default.
Signed-off-by: maximilian attems <max at stro.at>
diff --git a/klcc/klcc.in b/klcc/klcc.in
index d4313a5..b2c5daf 100644
--- a/klcc/klcc.in
+++ b/klcc/klcc.in
@@ -113,7 +113,7 @@ undef $lang;
$save_temps = 0; # The -save-temps option
$verbose = 0; # The -v option
-$shared = 0; # Are we compiling shared?
+$shared = 1; # Default to compiling shared
$debugging = 0; # -g or -p option present?
$strip = 0; # -s option present?
undef $output; # -o option present?
2014 Feb 25
2
[PATCH supermin v4] Supermin 5 rewrite.
...mes-only flag *)
- | PkgFiles (* no flag *)
- | PkgNames (* --names *)
- | PkgNamesOnly (* --names-only *)
-
-let excludes = ref []
-let mode = ref PkgFiles
-let outputdir = ref "."
-let packages = ref []
-let save_temps = ref false
-let use_installed = ref false
-let verbose = ref false
-let warnings = ref true
-let packager_config = ref None
-
-let print_version () =
- printf "%s %s\n" Config.package_name Config.package_version;
- exit 0
-
-let add_exclude re =
- excludes := Str.regexp re :: !exclud...