Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hpc-bin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hpc
hpc-bin
Commits
8d62316b
Commit
8d62316b
authored
16 years ago
by
Ian Lynagh
Browse files
Options
Downloads
Patches
Plain Diff
Build hpc with Cabal
parent
558fc01d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile
+2
-31
2 additions, 31 deletions
Makefile
hpc-bin.cabal
+30
-0
30 additions, 0 deletions
hpc-bin.cabal
with
32 additions
and
31 deletions
Makefile
+
2
−
31
View file @
8d62316b
TOP
=
../..
TOP
=
../..
include
$(TOP)/mk/boilerplate.mk
include
$(TOP)/mk/boilerplate.mk
include
$(TOP)/mk/cabal.mk
# Beyond stage 1, honour any Mac OS X depolyment target options. If we use
# these options in stage 1 we get a linker error if the bootstrap compiler is
# for a more recent OS version
ifeq
"$(stage)" "2"
SRC_CC_OPTS
+=
$(
MACOSX_DEPLOYMENT_CC_OPTS
)
SRC_HC_OPTS
+=
$(
addprefix
-optc
,
$(
MACOSX_DEPLOYMENT_CC_OPTS
))
SRC_LD_OPTS
+=
$(
addprefix
-optl
,
$(
MACOSX_DEPLOYMENT_LD_OPTS
))
endif
# We have two version: the inplace version compiled by the bootstrap compiler
# and the install version compiled by the stage 1 compiler
ifeq
"$(stage)" "2"
HS_PROG
=
hpc
$(
exeext
)
else
HS_PROG
=
hpc-inplace
$(
exeext
)
endif
INSTALL_PROGS
+=
$(
HS_PROG
)
HPC_LIB
=
$(
TOP
)
/libraries/hpc
SRC_HC_OPTS
+=
-package
hpc
-cpp
ifeq
"$(ghc_ge_607)" "YES"
SRC_HC_OPTS
+=
-package
containers
endif
binary-dist
:
$(
INSTALL_DIR
)
$(
BIN_DIST_DIR
)
/utils/hpc
$(
INSTALL_DATA
)
Makefile
$(
BIN_DIST_DIR
)
/utils/hpc/
$(
INSTALL_PROGRAM
)
$(
HS_PROG
)
$(
BIN_DIST_DIR
)
/utils/hpc/
include
$(TOP)/mk/target.mk
This diff is collapsed.
Click to expand it.
hpc-bin.cabal
0 → 100644
+
30
−
0
View file @
8d62316b
Name: hpc-bin
-- XXX version number:
Version: 0.67
Copyright: XXX
License: BSD3
-- XXX License-File: LICENSE
Author: XXX
Maintainer: XXX
Synopsis: XXX
Description:
XXX
Category: Development
build-type: Simple
cabal-version: >=1.2
Flag base3
Description: Choose the new smaller, split-up base package.
Executable hpc
Main-Is: Hpc.hs
if flag(base3)
Build-Depends: base >= 3 && < 4,
directory >= 1 && < 1.1,
containers >= 0.1 && < 0.2,
array >= 0.1 && < 0.2
else
Build-Depends: base < 3
Build-Depends: haskell98, hpc
Extensions: CPP
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment