AdeptLanguage / Adept

The Adept Programming Language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support for `pkg-config` and friends

opened this issue · comments

On C/C++, people will do this on the command line. Adept prefers to do all of this in source code. So, I suggest this:

foreign 'pkg-config --libs libfoo'

foreign 'foo-config --libs libfoo'

For example, this is the output of icu-config --ldflags:

-L/clang64/lib -licuin -licuuc -licudt

Adept compiler will have to parse this string to know the location of the libraries and which libraries to link.

True,

I'm not sure if it's a good idea to allow source code to execute arbitrary commands by default, but something like this with a little security would be nice.

Maybe having someway of opting-in or partially opting-in to arbitrary commands would be good to have,

I am occupied with Adept 3.x right now and other obligations, but feel free to make a PR

This is the tradition on Windows, which is unsuitable for Linux. This thread is only to show how bad this idea is. It's not for no reason that GCC and Clang have no such thing as #pragma comment(lib, "lib") like MSVC.