embedded-language Questions
7
Solved
I would like to call python script files from my c++ program.
I am not sure that the people I will distribute to will have python installed.
Truncated asked 8/9, 2008 at 3:53
2
Does anybody here have a experience with Common Lisp as a embedded language (using ECL)? If so, how good is ECL compared to Lua?
Litigant asked 11/7, 2010 at 15:35
13
Solved
In the many Python applications I've created, I often create simple modules containing nothing but constants to be used as config files. Additionally, because the config file is actually a Python c...
Wanwand asked 14/5, 2009 at 6:37
3
Solved
I'm embedding Python interpreter to a C program. However, it might happen that while running some python script via PyRun_SimpleString() will run into infinite loop or execute for too long. Conside...
Transmundane asked 14/9, 2009 at 11:19
3
Solved
i was wondering if anybody knows of a nice scripting language that can be embedded into php?
Javascript would be favorite and although there are several attempts they are either much too shaky/slow...
Whiles asked 28/7, 2009 at 15:27
2
Solved
That is, is there an embedded R interpreter available?
Bindweed asked 8/9, 2009 at 17:18
5
Solved
I have no experience with llvm or clang, yet. From what I read clang is said to be easily embeddable Wikipedia-Clang, however, I did not find any tutorials about how to achieve this. So is it possi...
Pellagra asked 11/7, 2010 at 20:16
8
Solved
I have a web-application. As part of this, I need users of the app to be able to write (or copy and paste) very simple scripts to run against their data.
The scripts really can be very simpl...
Uteutensil asked 24/2, 2011 at 0:27
5
Solved
What's the best way to embed Ruby as a scripting language in C++? Using ruby.h? SWIG? Something else? What I need is to expose some C++ objects to Ruby and have the Ruby interpreter evaluate script...
Pituri asked 27/10, 2008 at 8:10
3
Solved
I need to retrieve some details from a MusicXML (xml) file in Java.
I managed to read xml files in java - but through a web service (where I have to be online, connected to internet when I'm runni...
Bev asked 28/6, 2010 at 23:42
13
Solved
I'm working on an application in Java, that needs to do some complex logic rule deductions as part of its functionality. I'd like to code my logic deductions in Prolog or some other logic/constrain...
Xylia asked 29/11, 2009 at 22:30
2
Solved
What are the typical use cases of using an embeddable programming language? Do I understand it correctly that such language should be embedded into some program environment and should be able to be...
Peale asked 4/10, 2013 at 8:1
4
Solved
I am wondering if there are any statically typed, embeddable scripting languages. Python, JavaScript, etc. are great languages, but they are dynamically typed (that is, types are checked at r...
Propulsion asked 4/4, 2010 at 19:3
1
Solved
I would like to embed a javascript engine into an ANSI C application.
In fact, I would like to be able to run some code entered on runtime, while being able to interact with some C variables and ...
Hawthorne asked 30/6, 2012 at 10:59
5
Solved
I'm looking to build a VM into a game and was wondering if anyone knew of any really simple VM's (I was thinking RISC/PIC was close to what I wanted) that are usually used for embedded projects suc...
Regeneration asked 5/11, 2008 at 16:57
5
Solved
I'm looking for a scripting language that works on 32-bit and 64-bit machines as well as on Windows and Linux. I will be embedding it into a C++ application so I prefer it to be natively written in...
Havens asked 22/7, 2010 at 7:58
1
I'm developing my own Python code interpreter using the Python C API, as described in the Python documentation. I've taken a look on the Python source code and I tried to follow the same steps that...
Cahoon asked 7/7, 2010 at 16:2
4
Solved
For a project I'm currently working on, I'm looking to embed a scripting engine into my C++ code to allow for some extensibility down the line. The application will require a fair amount of text pr...
Unavailing asked 22/9, 2010 at 22:30
3
Solved
The majority of material I have found regarding DLR is related to IronPython. Can you parse and execute C# using DLR? If so is there over head that would prevent you from attempting this on a web s...
Giacopo asked 19/6, 2009 at 20:39
2
Solved
The LLVM Core project consists of:
Compiler - converts source code to LLVM IR
VM - executes compiled IR code
How can I embed the VM to a C++ application?
Emmott asked 20/8, 2010 at 0:55
2
Solved
I wish to enable user defined Clojure scripts to interact with my Java App. The problem is, I don't know in advance where the Clojure scripts will be located, so I can't include them in my classpat...
Rozanneroze asked 30/7, 2010 at 13:49
1
Solved
I'm trying to extract a closure from a groovy script. I define the closure as
def printMe = {str ->println str}
in my groovy file, and then try to use it by grabbing it from the binding as f...
Amortizement asked 30/7, 2010 at 10:5
1
Solved
say I'm about to write an application with a thin GUI layer, a really fat calculation layer (doing computationally heavy calibrations and other long-running stuff) and fairly simple persistance lay...
Rovner asked 15/4, 2010 at 8:49
2
Solved
Given a PyObject* pointing to a python object, how do I invoke one of the object methods? The documentation never gives an example of this:
PyObject* obj = ....
PyObject* args = Py_BuildValue("(s)...
Pascasia asked 1/9, 2009 at 19:8
3
Solved
I have a C++ desktop application (written in wxWidgets) and I want to add support for some scripting language.
Scripting would mostly be used for run-time conversions of strings, numbers and dates...
Diazonium asked 21/5, 2009 at 22:24
1 Next >
© 2022 - 2024 — McMap. All rights reserved.