search for: arflag

Displaying 20 results from an estimated 20 matches for "arflag".

Did you mean: arflags
2015 Sep 14
1
mk/efi.mk: Build gnu-efi with the Makefile, ARFLAGS=$(AROPT)
...i for $(EFI_SUBARCH) > - $(topdir)/efi/check-gnu-efi.sh $(EFI_SUBARCH) $(objdir) > + cd $(topdir) && git submodule update --init > + mkdir -p "$(objdir)/gnu-efi" > + MAKEFLAGS= make SRCDIR="$(EFIDIR)" TOPDIR="$(EFIDIR)" \ > + ARCH=$(EFI_SUBARCH) ARFLAGS=rvU -f "$(EFIDIR)/Makefile" + ARCH=$(EFI_SUBARCH) ARFLAGS=$(AROPT) -f "$(EFIDIR)/Makefile" > + MAKEFLAGS= make SRCDIR="$(EFIDIR)" TOPDIR="$(EFIDIR)" \ > + ARCH=$(EFI_SUBARCH) PREFIX="$(objdir)" ARFLAGS=rvU \ > + -f "$(EFIDIR)/M...
2015 Jun 05
2
[LLVMdev] LLVM-ar and openssl
...doc in order to find if there was an argument or something like that. For information, I configured openssl with the following parameters : ./Configure darwin64-x86_64-cc enable-ec_nistp_64_gcc_128 no-ssl2 no-ssl3 no-comp --openssldir=/usr/local/ssl/macos-x86_64 And I replaced this line AR= ar $(ARFLAGS) r in the Makefile with this AR= /path/to/llvm-ar $(ARFLAGS) r Greetings, Johan Wehrli
2015 Sep 14
11
[PATCH 0/4] efi: Makefile improvement
...t gmail.com> These few patches contain a few improvement about the Makefiles for EFI. Mainly, to rebuild the files when needed, and only when needed. The three shell scripts efi/{check,build,clean}-gnu-efi.sh disappeared and are now integrated as makefile recipes. You'll notice an argument ARFLAGS=rvU to the recursive make calls to gnu-efi. This is because, the default value is just "rv" and gnu-efi uses the implicit rules of make that uses $(ARFLAGS). Without the U flag, the timestamp of the members of the generated archive is set to 0, which is always outdated from the make'...
2015 Sep 14
0
[PATCH 3/4] mk/efi.mk: Build gnu-efi with the Makefile
...: @echo Building gnu-efi for $(EFI_SUBARCH) - $(topdir)/efi/check-gnu-efi.sh $(EFI_SUBARCH) $(objdir) + cd $(topdir) && git submodule update --init + mkdir -p "$(objdir)/gnu-efi" + MAKEFLAGS= make SRCDIR="$(EFIDIR)" TOPDIR="$(EFIDIR)" \ + ARCH=$(EFI_SUBARCH) ARFLAGS=rvU -f "$(EFIDIR)/Makefile" + MAKEFLAGS= make SRCDIR="$(EFIDIR)" TOPDIR="$(EFIDIR)" \ + ARCH=$(EFI_SUBARCH) PREFIX="$(objdir)" ARFLAGS=rvU \ + -f "$(EFIDIR)/Makefile" install %.o: %.S # Cancel old rule -- 2.5.1
2007 Dec 18
3
Installation difficulties
...f.o DES_ENC =dx86-cof.o yx86-cof.o AES_ASM_OBJ =ax86-cof.o BF_ENC =bx86-cof.o CAST_ENC =cx86-cof.o RC4_ENC =rx86-cof.o RC5_ENC =r586-cof.o MD5_OBJ_ASM =mx86-cof.o SHA1_OBJ_ASM =sx86-cof.o s512sse2-cof.o RMD160_OBJ_ASM=rm86-cof.o PROCESSOR = RANLIB =true ARFLAGS = PERL =perl THIRTY_TWO_BIT mode DES_PTR used DES_RISC1 used DES_UNROLL used BN_LLONG mode RC4_INDEX mode RC4_CHUNK is undefined Then the complaint: 'make' is not recognized as an internal or external command, operable program or batch file. Do you have any suggestion...
2004 Oct 22
6
[LLVMdev] Makefile.rules Changes / automake update (IMPORTANT!)
...e's what changed from a USER's perspective: * ExtraSource variable became BUILT_SOURCES (standard variable name) * SourceDir variable eliminated (redundant with BUILD_SRC_DIR, few uses) * Properly allow standard variables to be used (C,CFLAGS,CXX,CXXFLAGS,CPP, CPPFLAGS, LD, LDFLAGS, AR, ARFLAGS, etc) to alter compilation settings on a per directory basis. * Build BUILT_SOURCES first (ensures *.td -> *.inc translation occurs) * Dependency information is now, by default, generated on every compile. This keeps it constantly up to date. System headers are not tracked so as to red...
2004 Oct 22
0
[LLVMdev] Makefile.rules Changes / automake update (IMPORTANT!)
...a USER's perspective: > > * ExtraSource variable became BUILT_SOURCES (standard variable name) > * SourceDir variable eliminated (redundant with BUILD_SRC_DIR, few uses) > * Properly allow standard variables to be used (C,CFLAGS,CXX,CXXFLAGS,CPP, > CPPFLAGS, LD, LDFLAGS, AR, ARFLAGS, etc) to alter compilation settings on a > per directory basis. > * Build BUILT_SOURCES first (ensures *.td -> *.inc translation occurs) > * Dependency information is now, by default, generated on every compile. This > keeps it constantly up to date. System headers are not tra...
2008 Mar 25
1
[LLVMdev] Environment variables considered evil
...To make matters worse, there does not seem to be an exhaustive list of environment variables to check, at least not for gcc and autoconf (though there are plenty of non-exhaustive ones). I know I have to check CC, CXX, CCFLAGS, CPPFLAGS, CXXFLAGS, and LDFLAGS; does an ASFLAGS exist? A RANLIBFLAGS? ARFLAGS? (This is essentially the same problem as with global variables: lack of information hiding, making it very difficult to check all dependencies.) I'm pretty sure that I'm not the first to observe this kind of difficulty, and the GNU project probably won't change their conventions anyw...
2004 Oct 23
1
[LLVMdev] UPDATE: Makefile.rules Changes (IMPORTANT)
...------------------ > -# Variables derived from configuration options... > +# Variables derived from configuration we are building > #-------------------------------------------------------------------- > > ifdef ENABLE_PROFILING > @@ -126,16 +92,19 @@ > endif > > ARFLAGS := cru > -#------------------------------------------------------------------------------ > + > +#-------------------------------------------------------------------- > # Directory locations > +#-------------------------------------------------------------------- > OBJDIR...
2008 Mar 25
0
[LLVMdev] Potential breakage in llvm-gcc's ./configure
Hi Jo, > No, that was written under the assumption that passing in CC and CXX > via env variables wouldn't work. Things work now, so that assumption > is obviously wrong. > > I still don't like environment variables. They tend to remain in > effect long after I forgot that I set them, creating all sorts of > hassle. In fact I suspect I already fell prey to this,
2008 Mar 24
2
[LLVMdev] Potential breakage in llvm-gcc's ./configure
Am Montag, den 24.03.2008, 12:06 -0700 schrieb Tanya M. Lattner: > > This is close to a showstopper for integrating an llvm-gcc bootstrap > > into the nightly tester. The llvm-gcc ./configure needs to be called > > very differently from the llvm ./configure, and keeping two sets of > > options is Not Worth The Trouble, at least IMHO. > > So you didn't like the
2008 Jun 10
7
error compiling fc9 x64
...= ac_cv_env_host_alias_value= ac_cv_env_target_alias_set= ac_cv_env_target_alias_value= ac_cv_host=x86_64-unknown-linux-gnu ac_cv_prog_ac_ct_CC='gcc -m32' ac_cv_prog_make_make_set=yes ## ----------------- ## ## Output variables. ## ## ----------------- ## ALSALIBS='' AR='' ARFLAGS='' AS='as --32' AUDIOIOLIBS='' BISON='' BUILTINFLAG='' CARBONLIB='' CC='gcc -m32' CFLAGS='' COREAUDIO='' COREFOUNDATIONLIB='' CPP='' CPPBIN='' CPPFLAGS='' CROSSCC='' CROSSTEST=''...
2008 Oct 28
5
Wine does not compile on Fedora 9 x86_64
...= ac_cv_env_host_alias_value= ac_cv_env_target_alias_set= ac_cv_env_target_alias_value= ac_cv_host=x86_64-unknown-linux-gnu ac_cv_prog_ac_ct_CC='gcc -m32' ac_cv_prog_make_make_set=yes ## ----------------- ## ## Output variables. ## ## ----------------- ## ALSALIBS='' AR='' ARFLAGS='' AS='as --32' AUDIOIOLIBS='' BISON='' BUILTINFLAG='' CARBONLIB='' CC='gcc -m32' CFLAGS='-fno-tree-pre -fno-tree-fre' COREAUDIO='' COREFOUNDATIONLIB='' CPP='' CPPBIN='' CPPFLAGS='' CROSSCC='...
2010 Apr 17
1
Sim Tower crashing Under Latest dev vers
PC: Dell Inspirion 1300 w/ 1.6GHZ Intel and 512MB ram configuration OS: Lucid Lynx Xubuntu Beta 2 fully Updated like listed Installer fails to exit after install however when ran, "winevdm.exe" crashes and this is seen in terminal cael at cael-laptop:~/.wine/drive_c/SIMTOWER$ wine simtower fixme:winmm:MMSYSTDRV_SetHandle Already has a thunk for this handle (nil)!!! wine: Unhandled page
2009 Feb 21
1
Install failure (PR#13545)
...cv_prog_cc_c89= ac_cv_prog_cc_g=yes ac_cv_prog_cxx_g=no ac_cv_prog_f77_g=yes ac_cv_prog_gcc_traditional=no r_cv_prog_perl_v5=yes ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='$(SHELL) $(top_srcdir)/tools/missing aclocal' ALLOCA='' AR='ar' ARFLAGS='rc' AUTOCONF='$(SHELL) $(top_srcdir)/tools/missing autoconf' AUTOHEADER='$(SHELL) $(top_srcdir)/tools/missing autoheader' AUTOMAKE='$(SHELL) $(top_srcdir)/tools/missing automake' AWK='gawk' BITMAP_LIBS='' BLAS_LIBS0='' BLAS_LIBS='' B...
2010 Aug 17
6
DO NOT REPLY [Bug 7625] New: "Don't know how to make ./*.c"
https://bugzilla.samba.org/show_bug.cgi?id=7625 Summary: "Don't know how to make ./*.c" Product: rsync Version: 3.0.7 Platform: s390 OS/Version: Other Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned at samba.org ReportedBy: sebastian.hoffman at
2008 Mar 07
0
Wine release 0.9.57
...rtoull. include: Remove superfluous semi-colon from d3d9.h. libport: Undefine strcasecmp and strncasecmp in case they are defined to stricmp and strnicmp respectively. makefiles: Simplify the use of the IMPORTLIB variable in the DLL makefiles. makefiles: Split AR into AR and ARFLAGS. rpcrt4: Use closesocket to close sockets and define it to close on Unix platforms to make the code more portable. mshtml: Move some public GUIDs to shlguid.h. user32: Add test for calling CreateDesktop on already created desktop name. uuid: Add CLSID_InProcFreeMarshaler....
1998 Nov 16
5
Solaris make for 0.63 failing
...$(M2C) $(M2FLAGS) $(MODFLAGS) PC= pc PFLAGS = COMPILE.p= $(PC) $(PFLAGS) $(CPPFLAGS) -c LINK.p= $(PC) $(PFLAGS) $(CPPFLAGS) $(LDFLAGS) AS= as ASFLAGS = COMPILE.s= $(AS) $(ASFLAGS) COMPILE.S= $(CC) $(ASFLAGS) $(CPPFLAGS) -c CPS= cps CPSFLAGS = LD= ld LDFLAGS = LDLIBS = MAKE= make RM= rm -f AR= ar ARFLAGS= rv GET= get GFLAGS = SCCSFLAGS = SCCSGETFLAGS= -s MAKE= make MANPATH= /usr/man:/apps/res/man:/home/res/public/gnu/man:/apps/res/unix/modula_2_2.2/man DTDATABASESEARCHPATH= /home/res/gilp/.dt/types,/etc/dt/appconfig/types/%L,/etc/dt/appconfig/types/C,/usr/dt/appconfig/types/%L,/usr/dt/appconfig/ty...
2005 Feb 05
2
Problems compiling (configure) R on Ubuntu linux (debian)
...og_cc_c_o_lo=yes r_cv_prog_cc_m='gcc -MM' r_cv_prog_perl_v5=yes r_cv_size_max=yes r_cv_type_socklen=socklen_t ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='/home/ales/Programi/R/R-2.0.1/tools/missing aclocal-1.4' ALLOCA='' AR='ar' ARFLAGS='rc' AUTOCONF='/home/ales/Programi/R/R-2.0.1/tools/missing autoconf' AUTOHEADER='/home/ales/Programi/R/R-2.0.1/tools/missing autoheader' AUTOMAKE='/home/ales/Programi/R/R-2.0.1/tools/missing automake-1.4' AWK='mawk' BITMAP_LIBS='' BLAS_LIBS=''...
2003 Mar 29
1
compling errors for sun unix (PR#2702)
...c_o_lo=yes r_cv_prog_cc_m=yes r_cv_prog_makeinfo_v4=no r_cv_prog_perl_v5=no r_cv_type_socklen=socklen_t ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='/home/crsgrad/ozdogan/bin/r-project/R-1.6.2/tools/missing aclocal-1.4' ALLOCA='' AR='ar' ARFLAGS='rc' AUTOCONF='/home/crsgrad/ozdogan/bin/r-project/R-1.6.2/tools/missing autoconf' AUTOHEADER='/home/crsgrad/ozdogan/bin/r-project/R-1.6.2/tools/missing autoheader' AUTOMAKE='/home/crsgrad/ozdogan/bin/r-project/R-1.6.2/tools/missing automake-1.4' AWK='nawk'...