Displaying 20 results from an estimated 300 matches similar to: "[LLVMdev] Fw: Accepting iCode as input to SDCC"
2018 May 30
2
Evaluation failure of IAPWS95 functions in a rowwise manner (tidyverse style)
I'm trying to use the IAPWS95 package with the tidyverse packages. For some reason, the function is not outputting the correct rho.
A minimal example with results is below. I've also included the definition of the DTp function from the IAPWS95 library.
====================================
library(IAPWS95)
library(tidyverse)
initial <- data.frame(T=c(279,294),p=c(0.46,0.46))
2013 Jul 18
0
[LLVMdev] Some experiences using LLVM C Backend
Hello,
I'm interested in LLVM as an opportunity to support C++
programming for legacy MCUs (8051, PIC1x, etc.). Recently, I tried to
use C Backend as means to achieve this. As C Backend was removed in
recent LLVM versions, I started with LLVM 3.0 which was last version to
include it.
For starters, I played with MSP430 target, which is supported by LLVM,
so allows roundtrip experiments
2020 Aug 14
2
Another possible tracing feature for TableGen
I hacked around a bit with the simple case of tracing just classes and defs (no multiclasses or defms). Below you will see my test file and then the output produced. Note that the regular output from the PrintRecords backend follows the trace, so you can see the final classes and records there. Once the trace can be selective, it makes sense to add another option for PrintRecords that restricts
2018 May 30
0
Evaluation failure of IAPWS95 functions in a rowwise manner (tidyverse style)
Hi Shawn,
I don't think it has anything to do with the tidyverse. If you keep
simplifying your example you'll get all the way down to
> DTp(T=c(279,294),p=c(0.46,0.46))
[1] 1000.12283
--Ista
On Wed, May 30, 2018 at 2:14 PM, Shawn Way <SWay at meco.com> wrote:
> I'm trying to use the IAPWS95 package with the tidyverse packages. For some reason, the function is not
2009 Jan 29
1
Problem compiling 3.3.0?
On RH 5.2, and I've previously compiled and installed 3.0.28a on this
box. configure ran clean, but make fails with:-
Compiling smbd/server.c
Linking bin/smbd
smbd/server.o: In function `housekeeping_fn':
server.c:(.text+0x21e): undefined reference to
`attempt_machine_password_change'
collect2: ld returned 1 exit status
make: *** [bin/smbd] Error 1
Anyone else encountered this?
2010 Nov 12
0
Installing R+Emacs+MikTeX editor on a USB drive
Hi R-users,
Since it has been already asked for several times, I would like to share my
solution
that I have gathered from several sources on internet for portable
R+Emacs+MikTeX.
This may also help some future R-users.
My best,
Ozan
Installing R, MikTeX, Emacs (+auctex+aspell) on USB
Useful information from:
- http://at-aka.blogspot.com/2006/06/portable-emacs-22050-on-usb.html
-
2015 Jan 05
2
[LLVMdev] [PATCH] Fix Emacs package formatting
Hi
I'd like users to be able to install the LLVM major modes from
MELPA[1], the most popular Emacs package repository. However, these
files are not well-formed packages.
I've made the following changes:
* Both files have valid package headers and footers (you can verify
with M-x checkdoc).
* Fixed style warnings generated by checkdoc.
* Fixed a byte-compiler warning in llvm-mode.el.
*
2008 Aug 13
1
Samba 3.0.28a integration with 2003 AD and password lockout policy?
I'm encountering some oddness using Samba 3.0.28a, MIT kerberos (1.6.3)
for user authentication on Linux, to 2003 Active Directory.
The password policy dictated by AD should lock accounts after 6
incorrect login attempts within a 30 minute period. However, it seems to
halve that when logging in to these Linux boxes via ssh - so after 3
incorrect login attempts, the AD account gets locked.
2006 Nov 24
1
[LLVMdev] Byte code portability (was Re: libstdc++ as bytecode, and compiling C++ to C)
Hello Philipp.
> Why does it need target libraries and binutils?
gcc building process (and llvm-gcc4 as well) includes building of
target-specific stuff including:
1. Building crt-support code on several platforms
2. Building libgcc.a[.so]
3. Building libstdc++.a[.so]
If you don't want them to be built you should, probably you should
consult gcc documentation to find right options or
2006 Nov 23
0
[LLVMdev] Byte code portability (was Re: libstdc++ as bytecode, and compiling C++ to C)
On Thu, 2006-11-23 at 21:09 +0100, Philipp Klaus Krause wrote:
> Reid Spencer schrieb:
> > It generates C99. Its portability is no better or worse than any other
> > backend.
>
> Does that mean that I will have to configure llvm as a cross-compiler
> even when using the C backend?
LLVM doesn't need to be configured as a cross compiler. It can generate
code for a
2006 Nov 23
3
[LLVMdev] Byte code portability (was Re: libstdc++ as bytecode, and compiling C++ to C)
Reid Spencer schrieb:
> On Thu, 2006-11-23 at 19:10 +0100, Philipp Klaus Krause wrote:
>> Pertti Kellomäki schrieb:
>>> Chris Lattner wrote:
>>>> Many aspects of the target compiler can leak through.
>>> So if one wants to use the LLVM system as a cross compiler, one
>>> has to configure llvm-gcc as a cross compiler? Fair enough, I guess.
>> I
2007 May 16
2
[LLVMdev] Back End for a stack based architecture
Hi all,
I was asked to write a C compiler back end for a dated stack based
architecture, i.e. once whose instructions operate only on the top
elements of a stack and doesn't use arguments, something like the JVM.
I looked at some open source compilers (gcc, sdcc, tinyc and LLVM). To
me LLVM seems promising (and I likes C++).
Because I'm new here I need your help to understand if:
1)
2006 Nov 07
1
[LLVMdev] How do I use this to optimize C or C++ code?
I tried
llvm-gcc -c test.c
llvm-gcc test.o
llc -march=c test.bc -f -o test2.c
Then I compiled both test.c and test2.c with sdcc, a compiler which
lacks high-level optimization. The code generated from test2.c was
bigger. Then I tried
llvm-gcc -O5 -Os -c test.c
llvm-gcc -O5 -Os test.o
llc -march=c test.bc -f -o test2.c
But it generated exactly the same code as the commands above.
What is it that
2020 Aug 02
3
Combine TableGen documents?
Thank you for driving this Paul, I agree that it is better to have one doc on TableGen. This has been a point of confusion for me as well - when I land in the wrong one and can’t find what I’m looking for :-).
-Chris
> On Jul 31, 2020, at 1:49 PM, Paul C. Anagnostopoulos via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>
> Thanks, David. I have started a new document titled
2019 Dec 05
0
Dovecot & OAuth
Before declaring it not ready for prime time, did you try setting
tls_ca_cert_file = /etc/ssl/certs/ca-certificates.crt
In the oauth2 configuration file as documented in https://doc.dovecot.org/configuration_manual/authentication/oauth2 ?
Aki
> On 05/12/2019 21:58 mizuki via dovecot <dovecot at dovecot.org> wrote:
>
>
> Hi all,
>
> We'd like to enable OAuth with
2006 Apr 22
1
Setup tinc for "Road warrior"?
Hi:
I'm having some trouble connecting to the tinc VPN I've setup for my client.
Basically I would like to connect to the LAN of my client (as I'm currently
thousands of miles away and won't be back for a month and a half) to continue
with the development of an in-house ERP.
I've setup the router (a Linksys router running the stock firmware) to forward
both TCP and UDP
2008 Sep 29
3
LVM related bug in the GPL PV drivers for Windows?
Dear Xen users!
In case you were struggling with recent version of th gplpv drivers,
I''ve possibly found an LVM related bug in it, and reported to James
Harper. Thats''s the point:
I''ve tested the mentioned version of your driver on top of 32bit
xen-3.2.1 32bit xen-3.3.0 and 64bit xen xen-3.3.0 hypervisors, dom0 was
always an appropriate version of a 32bit PAE kernel,
2019 Dec 05
2
Dovecot & OAuth
Hi all,
We'd like to enable OAuth with Keycloak in Dovecot, after enabling
'OAUTHBEARER XOAUTH2' in Dovecot based on online document, I can confirm
Dovecot is ready for OAuth using openssl command, however when the auth
request comes in, it failed in establishing a SSL connection with Keycloak
server on port 443, shown as following in debug logs. I can confirming
using commands
2012 Dec 06
3
Proper way to call variables from a parent class to a child class
I currently have a child class of a parent one. The parent defines
some variable that I need to use in the child class. I am also using
gepetto. Gepetto is complaining about the syntax of the child variable.
It is saying that "$parentVar" should be "$::parentVar" however, when
changing to what Gepetto wants to use this breaks my classes. Does anyone
know the proper
2019 Dec 06
4
Dovecot & OAuth
I changed some of the tls options following the document, now config is
following:
tokeninfo_url =
https://keycloak.com/auth/realms/mail/protocol/openid-connect/token
introspection_url =
https://dovecot:7598e21b-ec34-481f-80d0-059bddae0923 at keycloak.com/auth/realms/demo/protocol/openid-connect/token/introspect
introspection_mode = post
debug = yes
rawlog_dir = /tmp/oauth2
#force_introspection