Questions tagged [compiled]

163 questions
1
vote
0 answers

SSIS:Builds and Run Successfully in VS2017 but in server Failed to compiled scripts contained in the package. it seems like sintaxis is wrong but isnt

My SSIS project builds and run succesfully in VS2017. But when I copy the dtsx file into my server and use cmd to run it, I get error this error: Error Log in CMD Basically, I'm using Script Task to invoke api rest with C#. The error is like the…
Joe
  • 11
  • 1
1
vote
1 answer

Two forcings in compiled code - R package deSolve

I am using package deSolve to run some models that include an external forcing. To gain speed, I produced compiled code following the vignette of the package (see 6.2 in https://cran.r-project.org/web/packages/deSolve/vignettes/compiledCode.pdf). My…
1
vote
1 answer

How can we distribute compiled source code if it is specific to the hardware it was compiled on?

Suppose we take a compiled language, for example, C++. Now let's take an example Framework, suppose Qt. Qt has it's source code publically available and has the options for users to download the binary files and let users use their API. My question…
1
vote
3 answers

Binary file from one linux to another

Is there any possible way to run binary compiled on another Linux? I know that of course the easiest is to rebuild that on another machine but lets assume that the only thing we can get is a binary file, so is it possible or not? (I know that…
1
vote
1 answer

Dotnet Core - how are packages (dll's) linked in my compiled application

I am creating a new dotnet core ASP Web API (dotnet core 2.2) and one thing I noticed is that it has a reference to a package called Microsoft.AspNetCore.App. When I look inside this package, it's really a reference to a bunch of other packages that…
Rob
  • 6,819
  • 17
  • 71
  • 131
1
vote
0 answers

Adding OpenLDAP support to PHP after compilation

So i'm currently migrating from php5 to php7, the problem is that the new php7 version (entreprise version) wasn't compiled using the --with-ldap[=DIR] option. Unfortunetly, i can only use this version. Does anyone know if you can add the path to…
Sim Hm
  • 97
  • 3
  • 13
1
vote
0 answers

Lua 5.1 compiled file. Is it possible to modify one or more bytes value to change a equal operation from == to ~=?

I have a Lua Compiled file (5.1). I decompiled it and I have this operation: if L2_3 == "MS" then L3_4 = print L4_5 = "Mfg install mode" L3_4(L4_5) L3_4 = true return L3_4 else L3_4 = print L4_5 = "Normal install mode" …
Tajadela
  • 11
  • 4
1
vote
0 answers

AutoHotkey simple script doesn't work when run from a shared folder connected by VPN

I have a simple script that runs from a shared folder on a server. When I run it from the same network where the server is, everything runs smooth, but when I'm not on the same network and I establish a VPN connection before running it, it returns…
needle
  • 11
  • 2
1
vote
2 answers

Typescript - Morgan and logger.stream cause lint error

I try to attach Morgan log to Winston using a logger Stream feature. But once I try to attach the logger.stream when I use morgan middleware, it fails with this message: Argument of type '"combined"' is not assignable to parameter of type…
Vincent
  • 452
  • 1
  • 7
  • 20
1
vote
1 answer

ASP.NET MVC deploy to iis not auto compile

I have an ASP.NET(Framework4.6.1) MVC project, If I deploy to IIS is the entire project,It can work. But If I only change some .cs or .cshtml files,iis won't recompile I want to ask: Can I just change some of the .cs or .cshtml files to allow iis to…
junyu
  • 33
  • 4
1
vote
1 answer

c++ like languages

I think C++ is one of the best known programming languages of all time, especially for low level programming stuff, but what other languages are a bit like C++ in means of capabilities? edit: I want compiled, low level programming languages. Not…
Tiddo
  • 6,331
  • 6
  • 52
  • 85
1
vote
0 answers

Using T4 templates to server html pages with javascript

i am new to T4 templates and i was thinking how can create and serve generated html pages through T4. I have this part of code in the test1.tt file <#@ template language="C#" #> <#@ assembly name="System.Core" #> <#@ import namespace="System.Linq"…
GomuGomuNoRocket
  • 771
  • 2
  • 11
  • 37
1
vote
0 answers

Triggering event handler in dll - vb.net

I am trying to create an event in my class to trigger an event handler that is already established and working in a dll file associated with my project. I don't have the ability to change the dll, as it is a NuGet package through my department. …
cnburke
  • 13
  • 5
1
vote
1 answer

How compiled language is better than interpreted language in optimizing the hardware?

Specifically how is compiled language able to better optimize the hardware compared to interpreted language? Other online sources that I have read only gave vague explanations like because it is written in the native code of the target machine while…
Colin Seng
  • 39
  • 5
1
vote
0 answers

Remote Insert - From In-Memory Table To In-Memory Table with Natively Compiled Stored Procedure

In SQL Server 2016, i can't remote insert with natively compiled stored procedure. FactInventory_Hot = In-Memory Table [10.10.10.109].AzureContosoDB.dbo.FactInventory_Hot = Remote In-Memory Table CREATE PROCEDURE [dbo].[usp_dataInsert] WITH…
Ugur
  • 11
  • 1