Fix Sophia stdlib path resolution.

This commit is contained in:
Craig Everett 2023-04-28 23:43:05 +09:00
parent fc2731fbbb
commit f11697da1a
19 changed files with 22 additions and 22 deletions

View File

@ -8,7 +8,7 @@
%%%-------------------------------------------------------------------
-module(aeso_aci).
-vsn("7.1.1").
-vsn("7.1.2").
-export([ file/2
, file/3

View File

@ -1,5 +1,5 @@
-module(aeso_ast).
-vsn("7.1.1").
-vsn("7.1.2").
-export([int/2,
line/1,

View File

@ -11,7 +11,7 @@
%%% instances of the compiler to be run in parallel.
-module(aeso_ast_infer_types).
-vsn("7.1.1").
-vsn("7.1.2").
-export([ infer/1
, infer/2

View File

@ -8,7 +8,7 @@
%%%
%%%-------------------------------------------------------------------
-module(aeso_ast_to_fcode).
-vsn("7.1.1").
-vsn("7.1.2").
-export([ast_to_fcode/2, format_fexpr/1]).
-export_type([fcode/0, fexpr/0, fun_def/0]).

View File

@ -7,7 +7,7 @@
%%% Created : 12 Dec 2017
%%%-------------------------------------------------------------------
-module(aeso_compiler).
-vsn("7.1.1").
-vsn("7.1.2").
-export([ file/1
, file/2

View File

@ -6,7 +6,7 @@
%%%-------------------------------------------------------------------
-module(aeso_errors).
-vsn("7.1.1").
-vsn("7.1.2").
-type src_file() :: no_file | iolist().

View File

@ -8,7 +8,7 @@
%%%
%%%-------------------------------------------------------------------
-module(aeso_fcode_to_fate).
-vsn("7.1.1").
-vsn("7.1.2").
-export([compile/3, compile/4, term_to_fate/1, term_to_fate/2]).

View File

@ -7,7 +7,7 @@
%%% @end
%%%-------------------------------------------------------------------
-module(aeso_parse_lib).
-vsn("7.1.1").
-vsn("7.1.2").
-export([parse/2,
return/1, fail/0, fail/1, fail/2, map/2, bind/2,

View File

@ -3,7 +3,7 @@
%%% Description :
%%% Created : 1 Mar 2018 by Ulf Norell
-module(aeso_parser).
-vsn("7.1.1").
-vsn("7.1.2").
-compile({no_auto_import,[map_get/2]}).
-export([string/1,

View File

@ -6,7 +6,7 @@
%%% @end
%%%-------------------------------------------------------------------
-module(aeso_pretty).
-vsn("7.1.1").
-vsn("7.1.2").
-import(prettypr, [text/1, sep/1, above/2, beside/2, nest/2, empty/0]).

View File

@ -6,7 +6,7 @@
%%% @end
%%%-------------------------------------------------------------------
-module(aeso_scan).
-vsn("7.1.1").
-vsn("7.1.2").
-export([scan/1, utf8_encode/1]).

View File

@ -5,7 +5,7 @@
%%% @end
%%%-------------------------------------------------------------------
-module(aeso_scan_lib).
-vsn("7.1.1").
-vsn("7.1.2").
-export([compile/1, string/3,
token/1, token/2, symbol/0, skip/0,

View File

@ -9,10 +9,10 @@
%%%-------------------------------------------------------------------
-module(aeso_stdlib).
-vsn("7.1.1").
-vsn("7.1.2").
-export([stdlib_include_path/0]).
stdlib_include_path() ->
filename:join([code:priv_dir(aesophia), "stdlib"]).
{file, Path} = code:is_loaded(?MODULE),
filename:join(filename:dirname(filename:dirname(Path)), "priv/stdlib").

View File

@ -7,7 +7,7 @@
%%%-------------------------------------------------------------------
-module(aeso_syntax).
-vsn("7.1.1").
-vsn("7.1.2").
-export([get_ann/1, get_ann/2, get_ann/3, set_ann/2, qualify/2]).

View File

@ -5,7 +5,7 @@
%%% @end
%%%-------------------------------------------------------------------
-module(aeso_syntax_utils).
-vsn("7.1.1").
-vsn("7.1.2").
-export([used_ids/1, used_types/2, used/1]).

View File

@ -5,7 +5,7 @@
%%% @end
%%%-------------------------------------------------------------------
-module(aeso_utils).
-vsn("7.1.1").
-vsn("7.1.2").
-export([scc/1]).

View File

@ -5,7 +5,7 @@
%%%-------------------------------------------------------------------
-module(aeso_vm_decode).
-vsn("7.1.1").
-vsn("7.1.2").
-export([ from_fate/2 ]).

View File

@ -1,5 +1,5 @@
-module(aeso_warnings).
-vsn("7.1.1").
-vsn("7.1.2").
-record(warn, { pos :: aeso_errors:pos()
, message :: iolist()

View File

@ -2,7 +2,7 @@
{author,"Aeternity Foundation"}.
{c_email,[]}.
{copyright,"Aeternity Foundation"}.
{deps,[{"otpr","aebytecode",{3,2,0}},
{deps,[{"otpr","aebytecode",{3,2,1}},
{"otpr","getopt",{1,0,2}},
{"otpr","eblake2",{1,0,0}},
{"otpr","zj",{1,1,0}}]}.
@ -12,7 +12,7 @@
{license,skip}.
{modules,[]}.
{name,"AE Sophia Compiler"}.
{package_id,{"otpr","aesophia",{7,1,1}}}.
{package_id,{"otpr","aesophia",{7,1,2}}}.
{prefix,none}.
{repo_url,"https://github.com/aeternity/aesophia"}.
{tags,["aeternity","blockchain","sophia","crypto","ae","compiler"]}.