Converting existing code or executables to another programming language, environment, or architecture.
0
votes
0answers
9 views
why does javax.sound.sampeld method return null in the Android
I'm porting java program to android.
What the problem in this work is that javax can not be included.
In case javax.xml.stream, I solve the problem using repackaging(javax.xml.* -> com.joe.xml.*)
but ...
-1
votes
1answer
43 views
Problems with regexes when porting from Ruby to PHP
I have two bits of code that seem to be correct translations of one another. They unfortunately appear to return different values.
Code in Ruby:
def separate(text,boundary = nil)
# returns array ...
0
votes
0answers
28 views
Windows Porting to x64: MFC x86 DLL implementing OLE Automation for MS Word, Access, DAO
Porting to x64: MFC x86 DLL implementing OLE Automation for MS Word, Access, DAO
I have an app written several years ago that I am porting to x64.
It consists of a VB.Net GUI using .Net 1.1 and ...
0
votes
1answer
45 views
Problems porting from Python to Ruby
I have a neat little script in python that I would like to port to Ruby and I think it's highlighting my noobishness at Ruby. I'm getting the error that there is an unexpected END statement, but I ...
-3
votes
2answers
52 views
Can I port Cyanogenmod without actual compiling? [closed]
I recently got a chinese Android 4.2 tablet. I have R/W access to all the flash memory of it. Is it possible to do a "lazy port" of Cyanogenmod for it, like replacing files in the /system partition ...
-6
votes
0answers
41 views
Not declared class in namespaces Porting to Linux [closed]
I have the following structure of files:
foo.h
namespace smf
{
class foo
{
int get ();
};
}
foo.cpp
#include "foo.h"
class fee
{
void ...
-6
votes
1answer
41 views
Class hasn't been declared [closed]
I have the following structure of files:
foo.h
namespace smf
{
class foo
{
int get ();
};
}
foo.cpp
#include "foo.h"
class fee
{
...
0
votes
2answers
58 views
Porting to Linux error: expected initializer before ‘:’ token
Well, I have a class
class DLL_LIB a: public b
{
}
The gcc says that
expected initializer before ‘:’ token
I don't understand why. Perhaps it's the proplem with linking the DLL library, ...
0
votes
1answer
31 views
Access 64 bit ODBC from 32 bit Process
I would like to access a 64 bit dll from a 32 bit application. Due to propitiatory third party lock-in, we do not have a suitable port of the 32 bit application. Creating 2 different versions of the ...
0
votes
1answer
46 views
resurrecting a project written in Visual studio 6 [closed]
I've been given the source code to an image classification application that was written in
visual studio 6. I've tried to see if any of the projects can be compiled. There is a project file with a ...
1
vote
1answer
17 views
In which way can i make use of AF_UNIX defined in Winsock2 in Windows
I have tried AF_UNIX with Windows socket API as follows:
socket(AF_UNIX, SOCK_STREAM, 0);
Above call returned INVALID_SOCKET. Last error was:
10047 "An address incompatible with the requested ...
1
vote
1answer
16 views
Windows 8 Apps - plist equivalent to hold dictionaries
In iOS plist files are useful resources since you can hold an array or a dictionary inside it and read from the plist file using a code like this:
NSMutableDictionary *myDic = [[NSMutableDictionary ...
0
votes
2answers
82 views
Is porting from Android to Windows Phone possible without using emulator?
I have a C++ source code of the game for Android. I want to port it to a Windows Phone. I hope it mean only change an API for platform-specific calls. The problem is that I cannot use SDK 8 Emulator ...
1
vote
1answer
63 views
error: expected initializer before ‘:’ token
I am trying to compile some C++ code (which can be compiled with Visual Studio 2012 on Windows) with g++-4.4.
I have this snippet of code,
const std::string cnw::restoreSession(const ...
0
votes
0answers
27 views
Rails RSpec request spec for external service
I'm writing some request specs, and I'd like to know how to get the [:get, :post, :put, :delete] helpers to hit an external service. Request specs include ActionDispatch::Integration::Runner.
My use ...
4
votes
1answer
103 views
Port some code to GCC, have some problems with #pragma directives
I'm trying to compile this code with GCC and I have these #pragma directives that I'm trying to convert to GCC understandable instructions and I just can't figure out how:
#pragma section(".CRT$XCA", ...
0
votes
1answer
70 views
Python and opencv program for android? [closed]
I am currently working on a contour image comparison proram in python & opencv. The program simply compares the real-time contour image from the webcam, and compares it to one of the various ...
0
votes
0answers
21 views
Qt4 application using q3ptrlist will crash
I have the following simple application that will crash. I am using Windows7 64Bit and Qt4.8.4 with GCC 4.7.2. Either using -m32 flags nor without them will work.
Can anyone report similar problems?
...
-1
votes
2answers
69 views
How can I port DeviceIOControl to ioctl?
In my understanding, DeviceIOControl and ioctl are the same functions. They both send control codes to the hardware and return the responses. In an effort to reuse code, I am trying to create a ...
0
votes
1answer
84 views
How to use ACL of Tizen
I'm new to Tizen.
Searching ahead to have Android apps developed already to work on Tizen, I found Tizen can run Android/Bada apps using Application Compatibility Layer (ACL)
Could someone please ...
0
votes
0answers
31 views
How to Develop a Desktop Static Library to support Windows Store App
I have to migrate a Desktop Static Library (written in VC++ 2010) to support Windows Store App (written in VC++ 2012). The problem is that Desktop Static Library includes many low level i/o functions, ...
0
votes
0answers
21 views
Misaligned memory access lm32
I'm doing a port of the CHibiOS RTOS to the lm32 microprocessor.
I have a problem of misaligned access when it tries to read from the memory.
This is the code that try to read a value from a called ...
1
vote
2answers
94 views
Need to port MS Visual C++ to Linux G++
I'd like to start by saying I am a computational biophysicist, not a software engineer, so my knowledge of programming is limited to scientific computation (I use C++, Matlab, and R).
I was recently ...
-1
votes
1answer
44 views
Linux kernel - what's the most basic source for new board [closed]
I want to port Linux to new board. What files should I create to make the most basic boot, to get only a printk output via serial console? It's ARMv6 based board.
1
vote
1answer
69 views
Is there any existing library that has matlab functions implemented in C/CPP/Obj-C?
I am using an algorithm that is only implemented in Matlab.
However I need to run it with gcc, once I do not have the needed Matlab licenses neither for server or for porting the code.
Sp, I'm ...
0
votes
1answer
54 views
What is wrong with my models.py?
Under Django, for a project that worked with previous versions of Python and Django (read: maybe this is a porting question), I get:
CommandError: One or more models did not validate:
...
-1
votes
1answer
64 views
Porting Kernel From Another Device [closed]
I am developing CM10 for my device, and I want to port 3.4 kernel from another device (because my device doesn't have 3.4 kernel).
I am fairly new to android development, therefore I need some ...
1
vote
0answers
121 views
Building Galaxy S3 Kernel for another Galaxy S3 variant
Basically what I am trying to do is build a kernel that has configs for one variant of the Galaxy S3 (d2usc) for another Galaxy S3 (d2cri) which they are both essentially the same model, but the ...
2
votes
1answer
62 views
Why am I getting an error message in Python 'cannot import name NoneType'?
I'm trying to convert some code from 2 to 3 and the following simple script
import types
from types import NoneType
Results in
ImportError: cannot import name NoneType
How can I convert the ...
1
vote
1answer
61 views
Making Android code cross platform
My Android app uses dynamic UI. That is, all of it UI screens are made up of only simple types (gallery, list view, form view) and they are created entirely by java code instead of using xml ...
0
votes
1answer
27 views
building tshark
I am porting tshark to a different OS.Can someone tell me which files/folders can be removed from the source code ? I am aware that GTK isnt required;but it would be great if i could do away with all ...
0
votes
1answer
97 views
Porting,Linux,C
I am getting this error while running this command
[root@himanshi busybox-1.20.2]# make ARCH=arm CROSS_COMPILE=arm-unknown-linux-gnueabi- CONFIG_PREFIX=/home/himanshi/beagleboard_xm/target install
...
0
votes
0answers
51 views
Android OS Porting For x86 Architecture
Yesterday I was doing andoid os porting for x86 Architecture, I followed all the steps given in android open source wesite from building environment, downloading source, and finally building the os ...
1
vote
0answers
34 views
sift.js(MongoDB inspired array filtering library) PHP port
There's a sift.js library, which allows you to use MongoDB syntax to query JavaScript arrays.
I've asked for a such PHP class in my question, and got several answers so far with good examples, but ...
1
vote
2answers
82 views
Get single bytes from multi-byte variable in java
How can I split a variable into single bytes in java? I have for example following snippet in C++:
unsigned long someVar;
byte *p = (byte*)(void*) someVar; // byte being typedef unsigned char ...
0
votes
0answers
57 views
Z_SOLO zlib embedded
I have download the latest zlib from the homepage and try to make it work in a small embedded envionment without any filesystem. I only want to compress/uncompress blocks of memory, no file system ...
0
votes
1answer
68 views
Porting a Python 2.x file like object to Python 3
I'm working on improving Python 3.X support for PyFilesystem. It's an abstraction for filesystems. Each filesystem object has an open method that returns a file-like object.
The problem I'm facing is ...
1
vote
2answers
84 views
GNU - Undefined Reference to `setmode'
I am porting a WIN32 library on Linux. I am able to compile my library with no error. But when i try to link, it gives following linking error
undefined reference to `setmode'
I know that ...
-1
votes
2answers
47 views
porting java code to contiki-os
i am using contiki-os to simulate some motes which would have semantic capabilities. As the contiki-os (erbium) is written in C but our semantic libraries are written in java.
can anyone here guide ...
1
vote
2answers
88 views
Quick array conversion from Java to C++
How would I use something like:
int array[][] = {{0,0,0},{1,0,0}};
...which is Java code in C++?
1
vote
1answer
695 views
Export a neural network trained with MATLAB in other programming languages
I trained a neural network using the MATLAB Neural Network Toolbox, and in particular using the command nprtool, which provides a simple GUI to use the toolbox features, and to export a net object ...
0
votes
1answer
52 views
How do I 'translate' a Java enum-type to JRuby code?
How would I go about to translate this Java code to i.e. JRuby:
enum Note {
REST, A4, A4$, B4, C4, C4$, D4, D4$, E4, F4, F4$, G4, G4$, A5;
public static final int SAMPLE_RATE = 16 * 1024; // ...
1
vote
0answers
9 views
Migrating app from Tiger to Snow leopard
I am trying to build Movino (http://sourceforge.net/projects/movino/files/) app for snow leopard. Does anybody have an idea how to build applications in Mac os X 10.4 (Tiger) so that it may run in ...
0
votes
1answer
49 views
Porting MFC to Win32SDK Application
I have 2 Application one in Win32SDK an Other one in MFC.
What should be my approach to port code on either side with minimum complication.
0
votes
1answer
58 views
Porting old C project into C++/CX
I'm rather new to C++/CX, and right now have an old C project which I need to port into C++/CX.
The output are flushed into text-file or standard output, but it's not that important right now since I ...
1
vote
3answers
296 views
Java ArrayList converted to C++
I have an ArrayList
ArrayList[][] gridList = new ArrayList[300][150];
// Where a and b are some values in the range of the ArrayList.
ArrayList al = this.gridList[a][b];
How could this be ...
0
votes
0answers
44 views
Trying to Port numpy Python some functions to C# [closed]
I want to port some functions from numpy Python to C#.
Just the code for obtain sample frequencies from Fourier Transform.
def fftfreq(n,d=1.0):
"""
Return the Discrete Fourier Transform ...
-4
votes
2answers
51 views
porting Android mobile application for multi platfrom [closed]
Porting Android mobile application to various platform possible.
Need to implement Blackberry,Symbian,Windows phone OS
Is any Tools,Methods,procedure are available.
0
votes
2answers
44 views
Porting Python 2 Unicode to Python 3
I'm currently porting some code from Python 2.x to 3.x and I have come to a hitch. When I try to change:
base = unicode(base, FSENCODING, "replace")
to what I think 3 wants, which is:
base = ...
0
votes
1answer
141 views
porting IOS app to windows Phone [closed]
I have a fully implemented native app in IOS today. The content of the app is to open and read pdf files that customers requesting.
Recently the customers have been asking about an windows phone app ...


