mirror of
https://github.com/danog/gllvm.git
synced 2024-11-30 07:49:00 +01:00
FreeBSD bug fix (pico extension)
This commit is contained in:
parent
7a13605571
commit
c917b673cf
1
Makefile
1
Makefile
@ -14,6 +14,7 @@ help:
|
||||
@echo ''
|
||||
|
||||
|
||||
install: develop
|
||||
|
||||
develop:
|
||||
go install github.com/SRI-CSL/gllvm/cmd/...
|
||||
|
@ -134,12 +134,14 @@ func buildAndAttachBitcode(compilerExecName string, pr ParserResult, bcObjLinks
|
||||
|
||||
func attachBitcodePathToObject(bcFile, objFile string) (success bool) {
|
||||
// We can only attach a bitcode path to certain file types
|
||||
// this is too fragile, we need to look into a better way to do this.
|
||||
switch filepath.Ext(objFile) {
|
||||
case
|
||||
".o",
|
||||
".lo",
|
||||
".os",
|
||||
".So",
|
||||
".pico", //iam: pico is FreeBSD
|
||||
".po":
|
||||
// Store bitcode path to temp file
|
||||
var absBcPath, _ = filepath.Abs(bcFile)
|
||||
|
@ -352,10 +352,14 @@ func Parse(argList []string) ParserResult {
|
||||
|
||||
// iam: this is a list because matching needs to be done in order.
|
||||
// if you add a NEW pattern; make sure it is before any existing pattern that also
|
||||
// matches and has a conflicting flagInfo value.
|
||||
// matches and has a conflicting flagInfo value. Also be careful with flags that can contain filenames, like
|
||||
// linker info flags or dependency flags
|
||||
var argPatterns = [...]argPattern{
|
||||
{`^.+\.(c|cc|cpp|C|cxx|i|s|S|bc)$`, flagInfo{0, pr.inputFileCallback}},
|
||||
{`^.+\.([fF](|[0-9][0-9]|or|OR|pp|PP))$`, flagInfo{0, pr.inputFileCallback}},
|
||||
//iam: it's a bit fragile as to what we recognize as an object file.
|
||||
// this also shows up in the compile function attachBitcodePathToObject, so additions
|
||||
// here, should also be additions there.
|
||||
{`^.+\.(o|lo|So|so|po|a|dylib|pico)$`, flagInfo{0, pr.objectFileCallback}}, //iam: pico is FreeBSD
|
||||
{`^.+\.dylib(\.\d)+$`, flagInfo{0, pr.objectFileCallback}},
|
||||
{`^.+\.(So|so)(\.\d)+$`, flagInfo{0, pr.objectFileCallback}},
|
||||
|
Loading…
Reference in New Issue
Block a user