Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re^3: Setting the build directory for a module using Inline::C

by syphilis (Archbishop)
on Apr 04, 2022 at 23:02 UTC ( [id://11142687]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Setting the build directory for a module using Inline::C
in thread Setting the build directory for a module using Inline::C

I want to set the build directory "_Inline" to some other path

I usually do this by setting the Inline config option "DIRECTORY" to the desired location.
This requires that the specified directory already exists.
It would also involve amending the code inside JavaScript:::DukTape ... I'm not sure if that's what you want.
use warnings; use Inline C => Config => # C:/inline_build must already exist DIRECTORY => 'C:/inline_build', ; use Inline C =><<'EOC'; void foo() { printf("Hello World\n"); } EOC foo();
Cheers,
Rob

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11142687]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (6)
As of 2024-04-19 10:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found