Mailinglist Archive: opensuse-project (465 mails)
| < Previous | Next > |
[opensuse-project] ICECC / ICECREAM - Two input files?
- From: "Karl Krach" <mailinglists@xxxxxxxxxxxxx>
- Date: Mon, 26 Jul 2010 08:47:32 +0200
- Message-id: <l65k78.th46qi@xxxxxxxxxxxxxxxxxxxxx>
Hello,
I'm looking for the Icecream mailing list. I found many references to
http://en.opensuse.org/Icecream - but it looks like as if this page is
discontinued.
My problem: I'm using Icecream with a toolchain generated by Buildroot. It's a
GCC 4.4 which supports the --sysroot flag. When compiling with makefiles
generated by qmake, Icecream builds always local because it detects "-isysroot
/path/to/toolchain" as second source file:
found another non option on command line. Two input files?
This patch would solve this problem:
--- icecc-0.9.4/client/arg.cpp 2009-04-30 14:35:23.000000000 +0200
+++ icecc-0.9.4-patched/client/arg.cpp 2010-07-26 08:42:23.000000000 +0200
@@ -249,7 +249,8 @@
|| str_equal("-iwithprefix", a)
|| str_equal("-isystem", a)
|| str_equal("-iwithprefixbefore", a)
- || str_equal("-idirafter", a) ) {
+ || str_equal("-idirafter", a)
+ || str_equal("-isysroot", a) ) {
args.append(a, Arg_Local);
/* skip next word, being option argument */
if (argv[i+1]) {
How can I submit it?
Best regards,
Charly
--
To unsubscribe, e-mail: opensuse-project+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-project+help@xxxxxxxxxxxx
I'm looking for the Icecream mailing list. I found many references to
http://en.opensuse.org/Icecream - but it looks like as if this page is
discontinued.
My problem: I'm using Icecream with a toolchain generated by Buildroot. It's a
GCC 4.4 which supports the --sysroot flag. When compiling with makefiles
generated by qmake, Icecream builds always local because it detects "-isysroot
/path/to/toolchain" as second source file:
found another non option on command line. Two input files?
This patch would solve this problem:
--- icecc-0.9.4/client/arg.cpp 2009-04-30 14:35:23.000000000 +0200
+++ icecc-0.9.4-patched/client/arg.cpp 2010-07-26 08:42:23.000000000 +0200
@@ -249,7 +249,8 @@
|| str_equal("-iwithprefix", a)
|| str_equal("-isystem", a)
|| str_equal("-iwithprefixbefore", a)
- || str_equal("-idirafter", a) ) {
+ || str_equal("-idirafter", a)
+ || str_equal("-isysroot", a) ) {
args.append(a, Arg_Local);
/* skip next word, being option argument */
if (argv[i+1]) {
How can I submit it?
Best regards,
Charly
--
To unsubscribe, e-mail: opensuse-project+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-project+help@xxxxxxxxxxxx
| < Previous | Next > |