Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
makefile
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EECS 281
makefile
Commits
02cbffe3
Commit
02cbffe3
authored
7 years ago
by
Marcus M. Darden
Browse files
Options
Downloads
Patches
Plain Diff
Update compiler paths for gcc 6.2.0 on CAEN.
parent
5f5a2d57
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile
+3
-37
3 additions, 37 deletions
Makefile
with
3 additions
and
37 deletions
Makefile
+
3
−
37
View file @
02cbffe3
...
...
@@ -17,44 +17,10 @@
# 3. Files you want to include in your final submission cannot match the
# test*.cpp pattern.
# Version 4.1 - 2016-10-07, Marcus M. Darden (mmdarden@umich.edu)
# * Allow test rules to worry without a defined PROJECTFILE
# * COPYFILE_DISABLE=true sets an environment variable that prevents MacOS
# from doing messy things while making tarballs
# * make clean now removes .dSYM directories from MacOS compilation
# * make debug now builds EXECUTABLE_debug
# 1. make clean
# 2. make -rR
# 3. make debug
# Will generate both an executable and executable_debug properly
# * Added -Wconversion to prevent conversion oversights
# Version 4 - 2015-05-03, Marcus M. Darden (mmdarden@umich.edu)
# * Updated build rules for tests
# Version 3.0.1 - 2015-01-22, Waleed Khan (wkhan@umich.edu)
# * Added '$(EXECUTABLE): $(OBJECTS)' target. Now you can compile with
# 'make executable', and re-linking isn't done unnecessarily.
# Version 3 - 2015-01-16, Marcus M. Darden (mmdarden@umich.edu)
# * Add help rule and message
# * All customization locations are cleary marked.
# Version 2 - 2014-11-02, Marcus M. Darden (mmdarden@umich.edu)
# * Move customization section to the bottom of the file
# * Add support for submit without test cases, to prevent submission
# deduction while testing, when code fails to compile
# usage: make partialsubmit <- includes no test case files
# make fullsubmit <- includes all test case files
# * Add automatic creation of test targets for test driver files
# usage: (add cpp files to the project folder with a test prefix)
# make alltests <- builds all test*.cpp
# make test_insert <- builds testinsert from test_insert.cpp
# make test2 <- builds testinsert from test2.cpp
# * Add documentation and changelog
# Version 1 - 2014-09-21, David Snider (sniderdj@umich.edu)
# Vertion 0 - ????-??-??, Matt Diffenderfer (mjdiffy@umich.edu)
# enables c++14 on CAEN
PATH
:=
/usr/um/gcc-
5.1
.0/bin:
$(
PATH
)
LD_LIBRARY_PATH
:=
/usr/um/gcc-
5.1
.0/lib64
LD_RUN_PATH
:=
/usr/um/gcc-
5.1
.0/lib64
PATH
:=
/usr/um/gcc-
6.2
.0/bin:
$(
PATH
)
LD_LIBRARY_PATH
:=
/usr/um/gcc-
6.2
.0/lib64
LD_RUN_PATH
:=
/usr/um/gcc-
6.2
.0/lib64
# TODO
# Change EXECUTABLE to match the command name given in the project spec.
...
...
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