Displaying 12 results from an estimated 12 matches for "stripflag".
2012 Aug 21
2
[LLVMdev] issues registering passes in osx 10.8
...d the option I get an undefined symbol error from the linker. This is the command i issue and the output i get.
>>
>
> It turns out that, on OS X, using the installed tool makes it unusable for plugins. If you edit this line of Makefile.rules:
> ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
>
> so that it looks like this:
> ProgInstall = $(INSTALL) -m 0755
>
> it should work after installing.
> --
> Joshua Cranmer
> News submodule owner
> DXR coauthor
> _______________________________________________
> LLVM Developers mailing list
> LL...
2005 Apr 09
0
not everybody uses bash
...S))' >> $@
echo 'OPTFLAGS=$(OPTFLAGS)' >> $@
echo 'LDFLAGS=$(LDFLAGS)' >> $@
- echo "STRIP=$(shell bash -c 'type -p $(STRIP)')" >> $@
+ echo "STRIP=$(shell which strip)" >> $@
echo 'STRIPFLAGS=$(STRIPFLAGS)' >> $@
echo 'EMAIN=$(EMAIN)' >> $@
echo 'BITSIZE=$(BITSIZE)' >> $@
@@ -34,7 +34,7 @@
$(CROSS)klcc: klcc.in $(CROSS)klibc.config makeklcc.pl
$(PERL) makeklcc.pl klcc.in $(CROSS)klibc.config \
- $(shell bash...
2012 Aug 21
0
[LLVMdev] issues registering passes in osx 10.8
...er when I load the option I get an undefined symbol
> error from the linker. This is the command i issue and the output i get.
>
It turns out that, on OS X, using the installed tool makes it unusable
for plugins. If you edit this line of Makefile.rules:
ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
so that it looks like this:
ProgInstall = $(INSTALL) -m 0755
it should work after installing.
--
Joshua Cranmer
News submodule owner
DXR coauthor
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/...
2020 Aug 20
0
[klibc:master] klcc: Treat CC, LD, STRIP as multiple words
...LAGS, @staticopt, @ldopt, @outopt, @objs,
@libs, @stdlibpath, '--start-group', @staticlib,
$libgcc, '--end-group');
}
@@ -270,7 +270,7 @@ if ( $operation ne '' ) {
unlink(@rmobjs);
if ( $strip && !$rv ) {
- $rv = mysystem($STRIP, @STRIPFLAGS, $output);
+ $rv = mysystem(@STRIP, @STRIPFLAGS, $output);
}
}
diff --git a/klcc/makeklcc.pl b/klcc/makeklcc.pl
index 5945eb16..41c5cf46 100644
--- a/klcc/makeklcc.pl
+++ b/klcc/makeklcc.pl
@@ -34,21 +34,21 @@ while ( defined($l = <KLIBCCONF>) ) {
chomp $l;
if ( $l =~ /^([^...
2012 Aug 21
2
[LLVMdev] issues registering passes in osx 10.8
Hi everyone,
This is Ashwin. I have a mac running osx 10.8. I am new to LLVM and have the version 3.1 installed. I am trying to get some LLVM transform passes running on my machine. After having compiled the LLVM source without making changes to the configuration files I am able to run the LLVM gcc and clang. But I am having some trouble using the passes. I tried loading the hello pass inside the
2012 Aug 22
0
[LLVMdev] issues registering passes in osx 10.8
...et an undefined symbol error from the linker. This is the command i issue and the output i get.
>>>
>>
>> It turns out that, on OS X, using the installed tool makes it unusable for plugins. If you edit this line of Makefile.rules:
>> ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
>>
>> so that it looks like this:
>> ProgInstall = $(INSTALL) -m 0755
>>
>> it should work after installing.
>> --
>> Joshua Cranmer
>> News submodule owner
>> DXR coauthor
>> _______________________________________________
&...
2019 Feb 19
0
[klibc:master] klcc: Enable stripping even if CONFIG_DEBUG_INFO is enabled
...CREQFLAGS) $(KLIBCARCHREQFLAGS) $(KLIBCCPPFLAGS))' >> $@
$(Q)echo 'OPTFLAGS=$(KLIBCOPTFLAGS)' >> $@
$(Q)echo 'LDFLAGS=$(KLIBCLDFLAGS)' >> $@
- $(Q)echo 'STRIP=$(KLIBCSTRIP)' >> $@
+ $(Q)echo 'STRIP=$(STRIP)' >> $@
$(Q)echo 'STRIPFLAGS=$(KLIBCSTRIPFLAGS)' >> $@
$(Q)echo 'EMAIN=$(KLIBCEMAIN)' >> $@
$(Q)echo 'BITSIZE=$(KLIBCBITSIZE)' >> $@
2020 Aug 29
0
[klibc:riscv64-enable-relax] Kbuild, klcc: Support multiple objects in KLIBCCRTSHARED
...| 3 +++
4 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/klcc/Kbuild b/klcc/Kbuild
index 0e625802..ca46c6ce 100644
--- a/klcc/Kbuild
+++ b/klcc/Kbuild
@@ -21,6 +21,7 @@ $(obj)/$(KLIBCCROSS)klibc.config: $(src)/Kbuild \
$(Q)echo 'STRIP=$(STRIP)' >> $@
$(Q)echo 'STRIPFLAGS=$(KLIBCSTRIPFLAGS)' >> $@
$(Q)echo 'EMAIN=$(KLIBCEMAIN)' >> $@
+ $(Q)echo 'CRTSHARED=$(notdir $(KLIBCCRTSHARED))' >> $@
$(Q)echo 'BITSIZE=$(KLIBCBITSIZE)' >> $@
$(Q)echo 'VERSION=$(shell cat $(srctree)/usr/klibc/version)' >> $...
2008 Jan 03
2
[LLVMdev] Building LLVM on Windows
...ntrinsics.gen.tmp
$(Verb) $(CMP) -s $@ $< || ( $(CP) $< $@ && \
Index: Makefile.rules
===================================================================
--- Makefile.rules (revision 45533)
+++ Makefile.rules (working copy)
@@ -483,8 +483,9 @@
ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
ScriptInstall = $(INSTALL) -m 0755
DataInstall = $(INSTALL) -m 0644
-TableGen = $(TBLGEN) -I $(PROJ_SRC_DIR) -I$(PROJ_SRC_ROOT)/include \
- -I $(PROJ_SRC_ROOT)/lib/Target
+TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
+ -I $(call S...
2005 May 19
3
[LLVMdev] [Cygwin] llvm 'make install' build errors
Reid,
I think it is the first time it is run that the errors occcur !?
Not sure but that would seem logical.
Aaron
2013 Aug 21
0
Build problems: klibc with Linux 3.10.7
...c -iwithprefix include -D__KLIBC__=2 -D__KLIBC_MINOR__=0 -D_BITSIZE=32' >> klcc/klibc.config
echo 'OPTFLAGS= -Os' >> klcc/klibc.config
echo 'LDFLAGS=-m elf32ppclinux' >> klcc/klibc.config
echo 'STRIP=ppc-linux-strip' >> klcc/klibc.config
echo 'STRIPFLAGS=--strip-all -R .comment -R .note' >> klcc/klibc.config
echo 'EMAIN=-e main' >> klcc/klibc.config
echo 'BITSIZE=32' >> klcc/klibc.config
echo 'VERSION=2.0.2' >> klcc/klibc.config
echo 'prefix=/tmp/klibc-install/lib/klibc' >> klcc/kli...
2013 Aug 21
5
Build problems: klibc with Linux 3.10.7
On Tue, Aug 20, 2013 at 07:44:39AM +0200, leroy christophe wrote:
> >
> Find attached two patches I have in order to build klibc 2.0.2
> against kernel 3.8.13
> We had to introduce those patches when going from kernel 3.6 to kernel 3.7
> Hope it helps.
>
those patches are wrong and again very brittle.
just use the way it is described in `make help':
A) cd ~/src/linux