Skip to content

Commit

Permalink
Merge branch 'master' of git@github.com:Whiteknight/parrot-linear-alg…
Browse files Browse the repository at this point in the history
…ebra
  • Loading branch information
Whiteknight committed Oct 28, 2009
2 parents 632761f + 90d7929 commit 8d158d8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Configure.nqp
Expand Up @@ -20,6 +20,11 @@ sub MAIN () {
# Slurp in the unconfigured Makefile text
my $unconfigured := slurp(@ARGS[0] || 'config/Makefile.in');

# Set up our custom @foo@ markers.
if ($OS ne 'openbsd') {
%VM<config>{'cblas'} := '-lcblas';
}

# Replace all of the @foo@ markers
my $replaced := subst($unconfigured, rx('\@<ident>\@'), replacement);

Expand Down
2 changes: 1 addition & 1 deletion config/Makefile.in
Expand Up @@ -23,7 +23,7 @@ CFLAGS = -fPIC @ccflags@
LD = @ld@
LD_LOAD_FLAGS = @ld_load_flags@
LDFLAGS = @ldflags@ @ld_debug@
LINKARGS = $(LDFLAGS) $(LD_LOAD_FLAGS) -lblas
LINKARGS = $(LDFLAGS) $(LD_LOAD_FLAGS) @linkblas@

PARROT_DYNEXT = $(LIB_DIR)/dynext
PERL6GRAMMAR = $(LIB_DIR)/library/PGE/Perl6Grammar.pbc
Expand Down

0 comments on commit 8d158d8

Please sign in to comment.